good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit c502bceb authored by Jaynti Kanani's avatar Jaynti Kanani
Browse files

fix: typo

parent 883aa515
No related branches found
No related tags found
No related merge requests found
......@@ -63,13 +63,15 @@ jobs:
VALIDATOR_ADDRESS=$2
NODE_TYPE=$3
args="/usr/bin/bor --datadir /etc/bor/dataDir --port '30303' --rpc --rpcaddr '0.0.0.0' --rpcvhosts '*' --rpccorsdomain '*' --rpcport '8545' --ipcpath /etc/bor/bor.ipc --rpcapi 'db,eth,net,web3,txpool,bor' --networkid $NETWORK_ID --miner.gaslimit '20000000' --txpool.nolocals --txpool.accountslots '128' --txpool.globalslots '20000' --txpool.lifetime '0h16m0s'"
DATA_DIR=/etc/bor/dataDir
args="/usr/bin/bor --datadir $DATA_DIR --port '30303' --rpc --rpcaddr '0.0.0.0' --rpcvhosts '*' --rpccorsdomain '*' --rpcport '8545' --ipcpath /etc/bor/bor.ipc --rpcapi 'db,eth,net,web3,txpool,bor' --networkid $NETWORK_ID --miner.gaslimit '20000000' --txpool.nolocals --txpool.accountslots '128' --txpool.globalslots '20000' --txpool.lifetime '0h16m0s'"
if [[ $NODE_TYPE == 'validator' ]]; then
args+="
--keystore $BOR_DIR/keystore \
--keystore $DATA_DIR/keystore \
--unlock $VALIDATOR_ADDRESS \
--password $BOR_DIR/password.txt \
--password $DATA_DIR/password.txt \
--allow-insecure-unlock \
--nodiscover --maxpeers 1 \
--mine
......@@ -84,9 +86,9 @@ jobs:
if [[ $NODE_TYPE == 'validator-without-sentry' ]]; then
args+="
--keystore $BOR_DIR/keystore \
--keystore $DATA_DIR/keystore \
--unlock $VALIDATOR_ADDRESS \
--password $BOR_DIR/password.txt \
--password $DATA_DIR/password.txt \
--allow-insecure-unlock \
--maxpeers 200 \
--mine
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment