Skip to content

Commit 535dfa7

Browse files
committed
solana: add missing constraint
1 parent 36c430c commit 535dfa7

File tree

1 file changed

+14
-0
lines changed
  • solana/programs/matching-engine/src/composite

1 file changed

+14
-0
lines changed

solana/programs/matching-engine/src/composite/mod.rs

+14
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,20 @@ pub struct ReserveFastFillSequence<'info> {
565565
#[account(mut)]
566566
payer: Signer<'info>,
567567

568+
#[account(
569+
constraint = {
570+
// Destination endpoint must be for Solana.
571+
require!(
572+
matches!(
573+
fast_order_path.to_endpoint.protocol,
574+
MessageProtocol::Local { .. }
575+
),
576+
MatchingEngineError::InvalidTargetRouter
577+
);
578+
579+
true
580+
},
581+
)]
568582
pub fast_order_path: FastOrderPath<'info>,
569583

570584
/// This sequencer determines the next reserved sequence. If it does not exist for a given

0 commit comments

Comments
 (0)