From a0bd0164fea7217227ff5de0151ee2952e59f87e Mon Sep 17 00:00:00 2001 From: kant Date: Sun, 17 Dec 2023 03:23:12 -0800 Subject: [PATCH] resolving merge conflict --- geth-poa/entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/geth-poa/entrypoint.sh b/geth-poa/entrypoint.sh index ac07e618d0..124ef8e4d3 100644 --- a/geth-poa/entrypoint.sh +++ b/geth-poa/entrypoint.sh @@ -51,6 +51,8 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then exec geth \ --verbosity="$VERBOSITY" \ + --cache=0 \ + --cache.trie=0 \ --datadir="$GETH_DATA_DIR" \ --port 30301 \ --http \ @@ -67,6 +69,7 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then --syncmode=full \ --gcmode=full \ --state.scheme=path \ + --snapshot \ --db.engine=pebble \ --networkid=$CHAIN_ID \ --nousb \ @@ -84,11 +87,14 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then exec geth \ --verbosity="$VERBOSITY" \ + --cache=0 \ + --cache.trie=0 \ --datadir="$GETH_DATA_DIR" \ --port 30311 \ --syncmode=full \ --gcmode=full \ --state.scheme=path \ + --snapshot \ --db.engine=pebble \ --http \ --http.corsdomain="*" \