From e060eeca875e905e83e6f7ee16f6a16f290034a0 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Thu, 30 Mar 2023 08:06:43 +0200 Subject: [PATCH] remove the = from erigon startup command --- erigon-polygon-mainline.yml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/erigon-polygon-mainline.yml b/erigon-polygon-mainline.yml index a2519b1c..06c4dd47 100644 --- a/erigon-polygon-mainline.yml +++ b/erigon-polygon-mainline.yml @@ -10,23 +10,24 @@ services: - "61044:61044/udp" restart: unless-stopped command: > - --chain=bor-mainnet \ - --datadir=/datadir \ - --ethash.dagdir=/datadir/ethash \ + --chain bor-mainnet \ + --snapshots false + --datadir /datadir \ + --ethash.dagdir /datadir/ethash \ --snap.stop \ - --bor.heimdall=http://localhost:1317 \ - --bor.heimdall=https://heimdall.stakesystems.io \ - --http --http.addr=0.0.0.0 --http.port=8545 \ - --http.compression --http.vhosts=* --http.corsdomain=* \ - --http.api=eth,debug,net,trace,web3,erigon,bor \ + --bor.heimdall http://localhost:1317 \ + --bor.heimdall https://heimdall.stakesystems.io \ + --http --http.addr 0.0.0.0 --http.port 8545 \ + --http.compression --http.vhosts * --http.corsdomain * \ + --http.api eth,debug,net,trace,web3,erigon,bor \ --ws --ws.compression \ - --rpc.gascap=300000000 \ - --metrics --metrics.addr=0.0.0.0 --metrics.port=6060 \ - --bodies.cache=5G --rpc.batch.limit=200000 \ - --db.pagesize=16k \ - --batchSize=2048MB \ - --port=61044 - --p2p.protocol=66 + --rpc.gascap 300000000 \ + --metrics --metrics.addr 0.0.0.0 --metrics.port 6060 \ + --bodies.cache 5G --rpc.batch.limit 200000 \ + --db.pagesize 16k \ + --batchSize 2048MB \ + --port 61044 + --p2p.protocol 66 stop_grace_period: 1m labels: - "prometheus-scrape.enabled=true"