You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firstly check whether you have initialised your datadir with appropriate genesis file, Secondly, check if you are referring to right datadir when executing the above command, also how are you generating your genesis.json file ? Would suggest to use quorum-genesis-tool to generate the genesis.json file.
Node 1 -
#!/bin/bash
PRIVATE_CONFIG=ignore
geth --datadir Node-0
--networkid 1330 --nodiscover --verbosity 5
--syncmode full
--istanbul.blockperiod 5 --mine --miner.threads 1 --miner.gasprice 0 --emitcheckpoints
--http --http.addr 127.0.0.1 --http.port 22000 --http.corsdomain "" --http.vhosts ""
--ws --ws.addr 127.0.0.1 --ws.port 32000 --ws.origins "*"
--http.api admin,eth,debug,miner,net,txpool,personal,web3,istanbul,quorum
--ws.api admin,eth,debug,miner,net,txpool,personal,web3,istanbul,quorum
--port 30001 >> logs/NODE-0.log 2>&1
Node 2 -
#!/bin/bash
PRIVATE_CONFIG=ignore
geth --datadir Node-1
--networkid 1330 --nodiscover --verbosity 5
--syncmode full
--istanbul.blockperiod 5 --mine --miner.threads 1 --miner.gasprice 0 --emitcheckpoints
--http --http.addr 127.0.0.1 --http.port 22001 --http.corsdomain "" --http.vhosts ""
--ws --ws.addr 127.0.0.1 --ws.port 32001 --ws.origins "*"
--http.api admin,eth,debug,miner,net,txpool,personal,web3
--ws.api admin,eth,debug,miner,net,txpool,personal,web3
--port 30002 >> logs/NODE-1.log 2>&1
As per other solution i have update my genesis config to istanbul but i didn't work for me
The text was updated successfully, but these errors were encountered: