Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 21 additions & 22 deletions apps/evm/single/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,27 @@ services:
entrypoint: /bin/sh -c
command:
- |
ev-reth node \
--chain /root/chain/genesis.json \
--datadir /home/reth/eth-home \
--metrics 0.0.0.0:9001 \
--authrpc.addr 0.0.0.0 \
--authrpc.port 8551 \
--authrpc.jwtsecret /root/jwt/jwt.hex \
--http --http.addr 0.0.0.0 --http.port 8545 \
--http.api eth,net,web3,txpool \
--ws --ws.addr 0.0.0.0 --ws.port 8546 \
--ws.api eth,net,web3 \
--engine.persistence-threshold 0 \
--engine.memory-block-buffer-target 0 \
--disable-discovery \
--txpool.pending-max-count 200000 \
--txpool.pending-max-size 200 \
--txpool.queued-max-count 200000 \
--txpool.queued-max-size 200 \
--txpool.max-account-slots 2048 \
--txpool.max-new-txns 2048 \
--txpool.additional-validation-tasks 16 \
--ev-reth.enable
ev-reth node \
--chain /root/chain/genesis.json \
--datadir /home/reth/eth-home \
--metrics 0.0.0.0:9001 \
--authrpc.addr 0.0.0.0 \
--authrpc.port 8551 \
--authrpc.jwtsecret /root/jwt/jwt.hex \
--http --http.addr 0.0.0.0 --http.port 8545 \
--http.api eth,net,web3,txpool \
--ws --ws.addr 0.0.0.0 --ws.port 8546 \
--ws.api eth,net,web3 \
--engine.persistence-threshold 0 \
--engine.memory-block-buffer-target 0 \
--disable-discovery \
--txpool.pending-max-count 200000 \
--txpool.pending-max-size 200 \
--txpool.queued-max-count 200000 \
--txpool.queued-max-size 200 \
--txpool.max-account-slots 2048 \
--txpool.max-new-txns 2048 \
--txpool.additional-validation-tasks 16 \
networks:
- evolve-network

Expand Down
1 change: 0 additions & 1 deletion execution/evm/docker/docker-compose-full-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ services:
--txpool.max-new-txns 2048 \
--txpool.additional-validation-tasks 16 \
--engine.always-process-payload-attributes-on-canonical-head \
--ev-reth.enable

volumes:
reth:
1 change: 0 additions & 1 deletion execution/evm/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ services:
--txpool.max-account-slots 2048 \
--txpool.max-new-txns 2048 \
--txpool.additional-validation-tasks 16 \
--ev-reth.enable \
--engine.always-process-payload-attributes-on-canonical-head \

volumes:
Expand Down
1 change: 0 additions & 1 deletion scripts/run-evm-nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ func (nm *nodeManager) startEVMDocker(name string, rpcPort, enginePort, wsPort i
"--txpool.max-new-txns", "2048",
"--txpool.additional-validation-tasks", "16",
"--engine.always-process-payload-attributes-on-canonical-head",
"--ev-reth.enable",
}

cmd := exec.Command("docker", args...)
Expand Down
Loading