Skip to content

Commit 453a98b

Browse files
committed
solana: fix comment; move constraint
1 parent bbed34a commit 453a98b

File tree

2 files changed

+24
-20
lines changed

2 files changed

+24
-20
lines changed

solana/programs/token-router/src/processor/redeem_fill/cctp.rs

+23-18
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ pub struct RedeemCctpFill<'info> {
9595
/// The CCTP Token Messenger Minter program will transfer the amount encoded in the CCTP message
9696
/// from its custody account to this account.
9797
///
98-
/// CHECK: Mutable. Seeds must be \["custody"\].
98+
/// CHECK: Mutable. Seeds must be \["custody"\, prepared_fill.key()].
9999
#[account(
100100
init_if_needed,
101101
payer = payer,
@@ -122,8 +122,28 @@ pub struct RedeemCctpFill<'info> {
122122
bump = router_endpoint.bump,
123123
seeds::program = matching_engine::id(),
124124
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+
}
127147
)]
128148
router_endpoint: Box<Account<'info, matching_engine::state::RouterEndpoint>>,
129149

@@ -218,21 +238,6 @@ fn handle_redeem_fill_cctp(ctx: Context<RedeemCctpFill>, args: CctpMessageArgs)
218238
},
219239
)?;
220240

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-
236241
// Wormhole CCTP deposit should be ours, so make sure this is a fill we recognize.
237242
let deposit = LiquidityLayerMessage::try_from(vaa.payload())
238243
.unwrap()

solana/programs/token-router/src/processor/redeem_fill/fast.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub struct RedeemFastFill<'info> {
4545
/// The CCTP Token Messenger Minter program will transfer the amount encoded in the CCTP message
4646
/// from its custody account to this account.
4747
///
48-
/// CHECK: Mutable. Seeds must be \["custody"\].
48+
/// CHECK: Mutable. Seeds must be \["custody"\, prepared_fill.key()].
4949
#[account(
5050
init_if_needed,
5151
payer = payer,
@@ -62,7 +62,6 @@ pub struct RedeemFastFill<'info> {
6262
usdc: Usdc<'info>,
6363

6464
/// CHECK: Seeds must be \["emitter"] (Matching Engine program).
65-
#[account(mut)]
6665
matching_engine_custodian: UncheckedAccount<'info>,
6766

6867
/// CHECK: Seeds must be \["endpoint", source_chain.to_be_bytes()\] (Matching Engine program).

0 commit comments

Comments
 (0)