-
Notifications
You must be signed in to change notification settings - Fork 87
Labels
bugSomething isn't workingSomething isn't workingsolanaChange to Solana programsChange to Solana programs
Description
I believe it is the intended/correct behaviour that redeem actions should not be possible when the protocol is paused.
EVM implementation:
| ) public whenNotPaused { |
Sui implementation:
| assert!(!state.is_paused(), EPaused); |
However, the SVM implementation uses the Config struct to gate this operation. Instead, NotPausedConfig should be used.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingsolanaChange to Solana programsChange to Solana programs