Skip to content

Commit 15fc99e

Browse files
committed
evm: make PAUSER_QUORUM a public constant
1 parent 259bcbc commit 15fc99e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evm/src/wormhole/Governance.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ contract Governance {
88
using BytesParsing for bytes;
99

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

1313
// "GeneralPurposeGovernance" (left padded)
1414
bytes32 public constant MODULE =

0 commit comments

Comments
 (0)