We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66523a3 commit 52906b7Copy full SHA for 52906b7
packages/protocol/script/DeployOnL1.s.sol
@@ -34,8 +34,8 @@ import { P256Verifier } from "p256-verifier/src/P256Verifier.sol";
34
/// @notice This script deploys the core Taiko protocol smart contract on L1,
35
/// initializing the rollup.
36
contract DeployOnL1 is DeployCapability {
37
- uint256 public constant NUM_MIN_MAJORITY_GUARDIANS = vm.envUint("NUM_MIN_MAJORITY_GUARDIANS");
38
- uint256 public constant NUM_MIN_MINORITY_GUARDIANS = vm.envUint("NUM_MIN_MINORITY_GUARDIANS");
+ uint256 public NUM_MIN_MAJORITY_GUARDIANS = vm.envUint("NUM_MIN_MAJORITY_GUARDIANS");
+ uint256 public NUM_MIN_MINORITY_GUARDIANS = vm.envUint("NUM_MIN_MINORITY_GUARDIANS");
39
40
address public constant MAINNET_CONTRACT_OWNER = 0x9CBeE534B5D8a6280e01a14844Ee8aF350399C7F; // admin.taiko.eth
41
0 commit comments