Skip to content

Commit d9b3a26

Browse files
committed
solana: fix stack access err
1 parent 9630dc0 commit d9b3a26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solana/programs/matching-engine/src/processor/admin/initialize.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pub struct Initialize<'info> {
8686
program_data.upgrade_authority_address.is_some()
8787
} @ MatchingEngineError::ImmutableProgram
8888
)]
89-
program_data: Account<'info, ProgramData>,
89+
program_data: Box<Account<'info, ProgramData>>,
9090

9191
/// CHECK: This program PDA will be the upgrade authority for the Token Router program.
9292
#[account(address = common::UPGRADE_MANAGER_AUTHORITY)]
@@ -110,7 +110,7 @@ pub struct InitializeArgs {
110110
}
111111

112112
pub fn initialize(ctx: Context<Initialize>, args: InitializeArgs) -> Result<()> {
113-
let owner: Pubkey = ctx.accounts.owner.key();
113+
let owner = ctx.accounts.owner.key();
114114
let auction_config_id = 0;
115115

116116
// We need to check that the upgrade authority is the owner passed into the account context.

0 commit comments

Comments
 (0)