我正在学习以太坊并尝试使用 Geth 1.7.3-stable 的专用网络。
Accounts[0] 在专用网络中有 105 个 eth,我尝试如下发送 eth。
但是 eth.sendTransaction 命令只返回“0xaf571929f95ddeaab8761d719dba3c852f5d4f9895968a905c275561eaf57ae6”。
而且accounts[1] 没有收到任何eth。
> eth.getBalance(eth.accounts[0])
105000000000000000000
> personal.unlockAccount(eth.accounts[0])
Unlock account 0x24636f1423f131f5441fbee83323c53c59af247d
Passphrase:
true
> eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[1], value: web3.toWei(2, 'ether')})
"0xaf571929f95ddeaab8761d719dba3c852f5d4f9895968a905c275561eaf57ae6"
>
> eth.getBalance(eth.accounts[1])
0
有谁知道如何解决这一问题?