Skip to content

Commit

Permalink
evm: fix enum values for mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-suri committed Aug 22, 2024
1 parent c58e6c7 commit e8a0fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm/src/NttManager/ManagerBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ abstract contract ManagerBase is
address public immutable token;
/// @dev Contract deployer address
address immutable deployer;
/// @dev Mode of the NTT Manager -- this is either LOCKING (Mode = 1) or BURNING (Mode = 2)
/// @dev Mode of the NTT Manager -- this is either LOCKING (Mode = 0) or BURNING (Mode = 1)
/// In LOCKING mode, tokens are locked/unlocked by the NTT Manager contract when sending/redeeming cross-chain transfers.
/// In BURNING mode, tokens are burned/minted by the NTT Manager contract when sending/redeeming cross-chain transfers.
Mode public immutable mode;
Expand Down

0 comments on commit e8a0fb9

Please sign in to comment.