Closed BastienFaivre closed 1 year ago
Command to enter the Javascript console:
./install/quorum/build/bin/geth attach ~/deploy/quorum-ibft/n0/geth.ipc
The accounts are not there. Apparently, some people are having the same issue here
The account are not imported by default on the node, a script that achieve this will be created.
personal.unlockAccount(eth.accounts[0],'0')
personal.unlockAccount(eth.accounts[1],'1')
eth.sendTransaction({from:eth.accounts[0],to:eth.accounts[1],value:web3.toWei(1e+29,'ether')})
web3.fromWei(eth.getBalance(eth.accounts[0]))
web3.fromWei(eth.getBalance(eth.accounts[1]))
The blockchain is working properly!
Make sure that the nodes are running correctly by trying to send some transactions with
geth
.