File tree 2 files changed +5
-5
lines changed
solana/programs/token-router/src
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ pub struct CheckedCustodian<'info> {
87
87
seeds = [ Custodian :: SEED_PREFIX ] ,
88
88
bump = Custodian :: BUMP ,
89
89
) ]
90
- pub custodian : Account < ' info , Custodian > ,
90
+ pub custodian : Box < Account < ' info , Custodian > > ,
91
91
}
92
92
93
93
impl < ' info > Deref for CheckedCustodian < ' info > {
@@ -128,7 +128,7 @@ pub struct OwnerOnlyMut<'info> {
128
128
seeds = [ Custodian :: SEED_PREFIX ] ,
129
129
bump = Custodian :: BUMP ,
130
130
) ]
131
- pub custodian : Account < ' info , Custodian > ,
131
+ pub custodian : Box < Account < ' info , Custodian > > ,
132
132
}
133
133
134
134
#[ derive( Accounts ) ]
@@ -161,7 +161,7 @@ pub struct AdminMut<'info> {
161
161
seeds = [ Custodian :: SEED_PREFIX ] ,
162
162
bump = Custodian :: BUMP ,
163
163
) ]
164
- pub custodian : Account < ' info , Custodian > ,
164
+ pub custodian : Box < Account < ' info , Custodian > > ,
165
165
}
166
166
167
167
/// Registered router endpoint representing a foreign Token Router. This account may have a CCTP
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ pub struct RedeemFastFill<'info> {
25
25
bump = fast_fill. seeds. bump,
26
26
seeds:: program = matching_engine_program,
27
27
) ]
28
- fast_fill : Account < ' info , FastFill > ,
28
+ fast_fill : Box < Account < ' info , FastFill > > ,
29
29
30
30
#[ account(
31
31
init_if_needed,
@@ -37,7 +37,7 @@ pub struct RedeemFastFill<'info> {
37
37
] ,
38
38
bump,
39
39
) ]
40
- prepared_fill : Account < ' info , PreparedFill > ,
40
+ prepared_fill : Box < Account < ' info , PreparedFill > > ,
41
41
42
42
/// Mint recipient token account, which is encoded as the mint recipient in the CCTP message.
43
43
/// The CCTP Token Messenger Minter program will transfer the amount encoded in the CCTP message
You can’t perform that action at this time.
0 commit comments