Commit f012ada4 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

contracts-bedrock: Fix deployment script (#3410)

* contracts-bedrock: Fix deployment script

* Don't lint more files
parent 25b088f9
...@@ -175,7 +175,7 @@ jobs: ...@@ -175,7 +175,7 @@ jobs:
fi fi
- run: - run:
name: check go bindings name: check go bindings
command: make && git diff --exit-code command: make && git diff --exit-code -- ':!*_more.go'
working_directory: op-bindings working_directory: op-bindings
js-lint-test: js-lint-test:
......
...@@ -109,7 +109,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -109,7 +109,7 @@ const deployFn: DeployFunction = async (hre) => {
const upgradeTxs: any[] = [] const upgradeTxs: any[] = []
for (const [proxy, upgrader] of Object.entries(upgradeABIs)) { for (const [proxy, upgrader] of Object.entries(upgradeABIs)) {
const upgraderOut = await upgrader(deployConfig, hre) const upgraderOut = await upgrader(deployConfig)
const implName = proxy.replace('Proxy', '') const implName = proxy.replace('Proxy', '')
const implDeployment = await get(implName) const implDeployment = await get(implName)
const implContract = await hre.ethers.getContractAt( const implContract = await hre.ethers.getContractAt(
......
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