Skip to content

Commit 3e0d3e0

Browse files
authored
solana: add missing endpoint constraint (#190)
Co-authored-by: A5 Pickle <a5-pickle@users.noreply.github.com>
1 parent d003059 commit 3e0d3e0

File tree

1 file changed

+11
-0
lines changed
  • solana/programs/matching-engine/src/processor/admin/router_endpoint/update

1 file changed

+11
-0
lines changed

solana/programs/matching-engine/src/processor/admin/router_endpoint/update/cctp.rs

+11
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@ use common::wormhole_cctp_solana::cctp::token_messenger_minter_program::{
1212
pub struct UpdateCctpRouterEndpoint<'info> {
1313
admin: OwnerOnly<'info>,
1414

15+
#[account(
16+
constraint = {
17+
require_eq!(
18+
args.chain,
19+
router_endpoint.chain,
20+
crate::error::MatchingEngineError::InvalidEndpoint,
21+
);
22+
23+
true
24+
}
25+
)]
1526
router_endpoint: ExistingMutRouterEndpoint<'info>,
1627

1728
/// CHECK: Seeds must be \["remote_token_messenger"\, remote_domain.to_string()] (CCTP Token

0 commit comments

Comments
 (0)