Skip to content

Commit

Permalink
evm: make PAUSER_QUORUM a public constant
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-suri committed Jun 11, 2024
1 parent 50c254c commit 8b4effa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm/src/wormhole/Governance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ contract Governance {
using BytesParsing for bytes;

// Only 2 Guardian signatures are required for quorum to call the pause function on governed contracts.
uint PAUSER_QUORUM = 2;
uint public constant PAUSER_QUORUM = 2;

// "GeneralPurposeGovernance" (left padded)
bytes32 public constant MODULE =
Expand Down

0 comments on commit 8b4effa

Please sign in to comment.