I believe it is the intended/correct behaviour that redeem actions should not be possible when the protocol is paused.
EVM implementation:
Sui implementation:
|
assert!(!state.is_paused(), EPaused); |
However, the SVM implementation uses the Config struct to gate this operation. Instead, NotPausedConfig should be used.
I believe it is the intended/correct behaviour that redeem actions should not be possible when the protocol is paused.
EVM implementation:
native-token-transfers/evm/src/NttManager/NttManager.sol
Line 205 in 21ffdad
Sui implementation:
native-token-transfers/sui/packages/ntt/sources/ntt.move
Line 201 in 21ffdad
However, the SVM implementation uses the
Configstruct to gate this operation. Instead,NotPausedConfigshould be used.