Skip to content

Commit

Permalink
return old file names
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Jan 3, 2025
1 parent 630f17a commit d4c83b9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/tests/upgrade-test/tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ export function initContracts(pathToHome: string, zkStack: boolean): Contracts {
`${pathToHome}/core/tests/ts-integration/artifacts-zk/contracts/counter/counter.sol/Counter.json`
).deployedBytecode,
stateTransitionManager: new ethers.Interface(
require(`${CONTRACTS_FOLDER}/l1-contracts/out/StateTransitionManager.sol/StateTransitionManager.json`).abi
require(
`${CONTRACTS_FOLDER}/l1-contracts/out/StateTransitionManager.sol/StateTransitionManager.json`
).abi
)
};
} else {
Expand Down Expand Up @@ -98,7 +100,9 @@ export function initContracts(pathToHome: string, zkStack: boolean): Contracts {
counterBytecode: require(`${pathToHome}/core/tests/ts-integration/zkout/counter.sol/Counter.json`)
.deployedBytecode,
stateTransitionManager: new ethers.Interface(
require(`${L1_CONTRACTS_FOLDER}/state-transition/StateTransitionManager.sol/StateTransitionManager.json`).abi
require(
`${L1_CONTRACTS_FOLDER}/state-transition/StateTransitionManager.sol/StateTransitionManager.json`
).abi
)
};
}
Expand Down

0 comments on commit d4c83b9

Please sign in to comment.