@@ -95,7 +95,7 @@ pub struct RedeemCctpFill<'info> {
95
95
/// The CCTP Token Messenger Minter program will transfer the amount encoded in the CCTP message
96
96
/// from its custody account to this account.
97
97
///
98
- /// CHECK: Mutable. Seeds must be \["custody"\].
98
+ /// CHECK: Mutable. Seeds must be \["custody"\, prepared_fill.key() ].
99
99
#[ account(
100
100
init_if_needed,
101
101
payer = payer,
@@ -122,8 +122,28 @@ pub struct RedeemCctpFill<'info> {
122
122
bump = router_endpoint. bump,
123
123
seeds:: program = matching_engine:: id( ) ,
124
124
constraint = {
125
- router_endpoint. protocol != matching_engine:: state:: MessageProtocol :: None
126
- } @ TokenRouterError :: EndpointDisabled ,
125
+ require!(
126
+ router_endpoint. protocol != matching_engine:: state:: MessageProtocol :: None ,
127
+ TokenRouterError :: EndpointDisabled
128
+ ) ;
129
+
130
+ // Validate that this message originated from a registered emitter.
131
+ //
132
+ // TODO: Put into account context.
133
+ let endpoint = & router_endpoint;
134
+ let emitter = fill_vaa. load_unchecked( ) . emitter_info( ) ;
135
+ require_eq!(
136
+ emitter. chain,
137
+ endpoint. chain,
138
+ TokenRouterError :: InvalidSourceRouter
139
+ ) ;
140
+ require!(
141
+ emitter. address == endpoint. address,
142
+ TokenRouterError :: InvalidSourceRouter
143
+ ) ;
144
+
145
+ true
146
+ }
127
147
) ]
128
148
router_endpoint : Box < Account < ' info , matching_engine:: state:: RouterEndpoint > > ,
129
149
@@ -218,21 +238,6 @@ fn handle_redeem_fill_cctp(ctx: Context<RedeemCctpFill>, args: CctpMessageArgs)
218
238
} ,
219
239
) ?;
220
240
221
- // Validate that this message originated from a registered emitter.
222
- //
223
- // TODO: Put into account context.
224
- let endpoint = & ctx. accounts . router_endpoint ;
225
- let emitter = vaa. emitter_info ( ) ;
226
- require_eq ! (
227
- emitter. chain,
228
- endpoint. chain,
229
- TokenRouterError :: InvalidSourceRouter
230
- ) ;
231
- require ! (
232
- emitter. address == endpoint. address,
233
- TokenRouterError :: InvalidSourceRouter
234
- ) ;
235
-
236
241
// Wormhole CCTP deposit should be ours, so make sure this is a fill we recognize.
237
242
let deposit = LiquidityLayerMessage :: try_from ( vaa. payload ( ) )
238
243
. unwrap ( )
0 commit comments