Commit edb4ce3e authored by Joshua Gutow's avatar Joshua Gutow

ops: Use correct sequencer inbox value for the batch

The value is pulled in from the rollup.json config; however it
was still using the old config that was checked in (& deleted
a while ago) instead of using the generated config.
parent 3855d105
...@@ -129,7 +129,7 @@ fi ...@@ -129,7 +129,7 @@ fi
L2OO_ADDRESS=$(jq -r .address < $CONTRACTS_BEDROCK/deployments/$NETWORK/L2OutputOracleProxy.json) L2OO_ADDRESS=$(jq -r .address < $CONTRACTS_BEDROCK/deployments/$NETWORK/L2OutputOracleProxy.json)
SEQUENCER_GENESIS_HASH="$(jq -r '.l2.hash' < .devnet/rollup.json)" SEQUENCER_GENESIS_HASH="$(jq -r '.l2.hash' < .devnet/rollup.json)"
SEQUENCER_BATCH_INBOX_ADDRESS="$(cat ./ops-bedrock/rollup.json | jq -r '.batch_inbox_address')" SEQUENCER_BATCH_INBOX_ADDRESS="$(cat ./.devnet/rollup.json | jq -r '.batch_inbox_address')"
# Bring up everything else. # Bring up everything else.
( (
......
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