Commit 45bb9473 authored by Mark Tyneway's avatar Mark Tyneway

ctp: fix version assert in deploy scripts

parent 2f50e29d
...@@ -91,7 +91,7 @@ const deployFn: DeployFunction = async (hre: HardhatRuntimeEnvironment) => { ...@@ -91,7 +91,7 @@ const deployFn: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
console.log('Contract deployment complete') console.log('Contract deployment complete')
// Assert that the variables are set correctly // Assert that the variables are set correctly
assertContractVariable(AttestationStation, 'version', '0.0.1') assertContractVariable(AttestationStation, 'version', '1.0.0')
} }
deployFn.tags = ['AttestationStationProxy'] deployFn.tags = ['AttestationStationProxy']
......
...@@ -94,7 +94,7 @@ const deployFn: DeployFunction = async (hre: HardhatRuntimeEnvironment) => { ...@@ -94,7 +94,7 @@ const deployFn: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
Deployment__AttestationStation.address Deployment__AttestationStation.address
) )
assertContractVariable(Optimist, 'ATTESTOR', hre.deployConfig.attestorAddress) assertContractVariable(Optimist, 'ATTESTOR', hre.deployConfig.attestorAddress)
assertContractVariable(Optimist, 'version', '0.0.1') assertContractVariable(Optimist, 'version', '1.0.0')
} }
deployFn.tags = ['OptimistProxy'] 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