Skip to content

Commit 887db4c

Browse files
committed
solana: Block redeem when there are no transceivers
1 parent a187c54 commit 887db4c

File tree

1 file changed

+2
-0
lines changed
  • solana/programs/example-native-token-transfers/src/instructions

1 file changed

+2
-0
lines changed

solana/programs/example-native-token-transfers/src/instructions/redeem.rs

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ pub struct Redeem<'info> {
2424
// NOTE: this works when the contract is paused
2525
#[account(
2626
constraint = config.threshold > 0 @ NTTError::ZeroThreshold,
27+
constraint = config.next_transceiver_id != 0 @ NTTError::NoRegisteredTransceivers,
28+
constraint = config.enabled_transceivers.is_empty() @ NTTError::NoRegisteredTransceivers,
2729
)]
2830
pub config: Account<'info, Config>,
2931

0 commit comments

Comments
 (0)