Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why doesn't the UserState account need an additional space ANCHOR_DESCRIMINATOR_SIZE in example close-account #353

Open
SpriteOvO opened this issue Jan 31, 2025 · 0 comments

Comments

@SpriteOvO
Copy link

#[account(
init,
payer = user,
space = UserState::INIT_SPACE,
seeds = [
b"USER",
user.key().as_ref(),
],
bump
)]
pub user_account: Account<'info, UserState>,

Why doesn't this account space need an additional ANCHOR_DESCRIMINATOR_SIZE (8) but the below does?

#[account(
init,
payer = payer,
space = ANCHOR_DESCRIMINATOR_SIZE + AddressInfo::INIT_SPACE,
)]
address_info: Account<'info, AddressInfo>,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant