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

ci: Always run devnet, fix devnet CI (#4175)

* ci: Always run devnet

* fix sdk
parent ab5c1b89
...@@ -592,13 +592,6 @@ jobs: ...@@ -592,13 +592,6 @@ jobs:
DOCKER_BUILDKIT: 1 DOCKER_BUILDKIT: 1
steps: steps:
- checkout - checkout
- run:
name: Check if we should run
command: |
CHANGED=$(bash ./ops/docker/ci-builder/check-changed.sh "(contracts-bedrock|op-bindings|op-batcher|op-node|op-proposer|ops-bedrock|op-chain-ops|sdk|.circleci)/" || echo "TRUE")
if [[ "$CHANGED" = "FALSE" ]]; then
circleci step halt
fi
- run: - run:
name: Install latest golang name: Install latest golang
command: | command: |
......
...@@ -1383,7 +1383,7 @@ export class CrossChainMessenger { ...@@ -1383,7 +1383,7 @@ export class CrossChainMessenger {
const messageSlot = ethers.utils.keccak256( const messageSlot = ethers.utils.keccak256(
ethers.utils.defaultAbiCoder.encode( ethers.utils.defaultAbiCoder.encode(
['bytes32', 'uint256'], ['bytes32', 'uint256'],
[hashLowLevelMessage(withdrawal)] [hashLowLevelMessage(withdrawal), ethers.constants.HashZero]
) )
) )
......
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