Skip to content

Commit

Permalink
chore: added zero gas tx pool to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielMartinezRodriguez committed Oct 2, 2023
1 parent 2f528b5 commit ad77145
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docker/client/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@ if [ -n "$NODE_KEY" ]; then
START_COMMAND="$START_COMMAND --node-key $NODE_KEY"
fi

if [ "$DEFAULT_BOOTNODE" = "yes" ]; then
START_COMMAND="$START_COMMAND --bootnodes /ip4/3.21.88.38/tcp/30333/p2p/12D3KooWPaen1igo2WYUFCt3EAg4AWjWoMYgmr4tCa2Yb1WfgoDB"
elif [ -n "$BOOTNODES" ]; then
if [ -n "$BOOTNODES" ]; then
START_COMMAND="$START_COMMAND --bootnodes $BOOTNODES"
fi

if [ -n "$ZERO_GAS_TX_POOL" ]; then
START_COMMAND="$START_COMMAND --zero-gas-tx-pool $ZERO_GAS_TX_POOL"
fi

echo "Starting $CHAIN_TARGET chain"
eval $START_COMMAND

0 comments on commit ad77145

Please sign in to comment.