File tree 1 file changed +2
-2
lines changed
solana/programs/matching-engine/src/processor/admin
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ pub struct Initialize<'info> {
86
86
program_data. upgrade_authority_address. is_some( )
87
87
} @ MatchingEngineError :: ImmutableProgram
88
88
) ]
89
- program_data : Account < ' info , ProgramData > ,
89
+ program_data : Box < Account < ' info , ProgramData > > ,
90
90
91
91
/// CHECK: This program PDA will be the upgrade authority for the Token Router program.
92
92
#[ account( address = common:: UPGRADE_MANAGER_AUTHORITY ) ]
@@ -110,7 +110,7 @@ pub struct InitializeArgs {
110
110
}
111
111
112
112
pub fn initialize ( ctx : Context < Initialize > , args : InitializeArgs ) -> Result < ( ) > {
113
- let owner: Pubkey = ctx. accounts . owner . key ( ) ;
113
+ let owner = ctx. accounts . owner . key ( ) ;
114
114
let auction_config_id = 0 ;
115
115
116
116
// We need to check that the upgrade authority is the owner passed into the account context.
You can’t perform that action at this time.
0 commit comments