Skip to content

Commit 65e6f8f

Browse files
committed
use latest l2geth image and configure new flag --l1.sync.interval=1s
1 parent 6b1a715 commit 65e6f8f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/docker-compose.test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
condition: service_healthy
5353

5454
l2geth-sequencer:
55-
image: scrolltech/l2geth:scroll-v5.9.4
55+
image: scrolltech/l2geth:scroll-v5.9.5
5656
platform: linux/amd64
5757
entrypoint: ["bash", "/launch_l2geth.bash"]
5858
ports:
@@ -67,7 +67,7 @@ services:
6767
condition: service_healthy
6868

6969
l2geth-follower:
70-
image: scrolltech/l2geth:scroll-v5.9.4
70+
image: scrolltech/l2geth:scroll-v5.9.5
7171
platform: linux/amd64
7272
entrypoint: ["bash", "/launch_l2geth.bash"]
7373
ports:

tests/launch_l2geth_follower.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exec geth --datadir=/l2geth \
99
--http --http.addr 0.0.0.0 --http.port 8545 --http.vhosts "*" --http.corsdomain "*" --http.api "admin,eth,scroll,net,web3,debug" \
1010
--ws --ws.addr 0.0.0.0 --ws.port 8546 --ws.api "admin,eth,scroll,net,web3,debug" \
1111
--pprof --pprof.addr 0.0.0.0 --pprof.port 6060 --metrics --verbosity 5 --log.debug \
12-
--l1.endpoint "http://l1-node:8545" --l1.confirmations finalized --l1.sync.startblock 0 \
12+
--l1.endpoint "http://l1-node:8545" --l1.confirmations finalized --l1.sync.startblock 0 --l1.sync.interval 1s \
1313
--gcmode archive --cache.noprefetch --cache.snapshot=0 --snapshot=false \
1414
--gossip.enablebroadcasttoall \
1515
--nat extip:0.0.0.0

tests/launch_l2geth_sequencer.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exec geth --datadir=/l2geth \
1919
--http --http.addr 0.0.0.0 --http.port 8545 --http.vhosts "*" --http.corsdomain "*" --http.api "admin,eth,scroll,net,web3,debug,miner" \
2020
--ws --ws.addr 0.0.0.0 --ws.port 8546 --ws.api "admin,eth,scroll,net,web3,debug,miner" \
2121
--pprof --pprof.addr 0.0.0.0 --pprof.port 6060 --metrics --verbosity 5 --log.debug \
22-
--l1.endpoint "http://l1-node:8545" --l1.confirmations finalized --l1.sync.startblock 0 \
22+
--l1.endpoint "http://l1-node:8545" --l1.confirmations finalized --l1.sync.startblock 0 --l1.sync.interval 1s \
2323
--gcmode archive --cache.noprefetch --cache.snapshot=0 --snapshot=false \
2424
--nat extip:0.0.0.0 \
2525
--gossip.enablebroadcasttoall \

0 commit comments

Comments
 (0)