@@ -361,32 +361,27 @@ Run `op-geth` with the following commands.
cd ~/op-geth
./build/bin/geth \
--datadir ./datadir \
--http\
--http.corsdomain="*"\
--http.vhosts="*"\
--http.addr=0.0.0.0 \
--http.api=web3,debug,eth,txpool,net,engine \
--ws\
--ws.addr=0.0.0.0 \
--ws.port=8546 \
--ws.origins="*"\
--ws.api=debug,eth,txpool,net,engine \
--syncmode=full \
--gcmode=archive \
--nodiscover\
--maxpeers=0 \
--networkid=42069 \
--authrpc.vhosts="*"\
--authrpc.addr=0.0.0.0 \
--authrpc.port=8551 \
--authrpc.jwtsecret=./jwt.txt \
--rollup.disabletxpoolgossip=true\
--password=./datadir/password \
--allow-insecure-unlock\
--mine\
--miner.etherbase=$SEQ_ADDR\
--unlock=$SEQ_ADDR
--datadir ./datadir \
--http\
--http.corsdomain="*"\
--http.vhosts="*"\
--http.addr=0.0.0.0 \
--http.api=web3,debug,eth,txpool,net,engine \
--ws\
--ws.addr=0.0.0.0 \
--ws.port=8546 \
--ws.origins="*"\
--ws.api=debug,eth,txpool,net,engine \
--syncmode=full \
--gcmode=archive \
--nodiscover\
--maxpeers=0 \
--networkid=42069 \
--authrpc.vhosts="*"\
--authrpc.addr=0.0.0.0 \
--authrpc.port=8551 \
--authrpc.jwtsecret=./jwt.txt \
--rollup.disabletxpoolgossip=true
```
And `op-geth` should be running! You should see some output, but you won’t see any blocks being created yet because `op-geth` is driven by the `op-node`. We’ll need to get that running next.