Commit a50dd122 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #4475 from ethereum-optimism/fix/version-assert

ctp: fix version assert in deploy scripts
parents 2f50e29d 45bb9473
......@@ -91,7 +91,7 @@ const deployFn: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
console.log('Contract deployment complete')
// Assert that the variables are set correctly
assertContractVariable(AttestationStation, 'version', '0.0.1')
assertContractVariable(AttestationStation, 'version', '1.0.0')
}
deployFn.tags = ['AttestationStationProxy']
......
......@@ -94,7 +94,7 @@ const deployFn: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
Deployment__AttestationStation.address
)
assertContractVariable(Optimist, 'ATTESTOR', hre.deployConfig.attestorAddress)
assertContractVariable(Optimist, 'version', '0.0.1')
assertContractVariable(Optimist, 'version', '1.0.0')
}
deployFn.tags = ['OptimistProxy']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment