問題
ethereum入門のetherを送金するの章に記載の内容で、etherの送金を行おうとしています。
geth
1eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[1], value:web3.toWei(100, "ether")})
を実施したのち、
geth
1eth.getBlance(eth.accounts[1])
を実行しても、「0」が表示され、いっこうに送信さません。
pendingTransactionsで、確認したところ、以下のようにトランザクションがペンディングされている状態です。
geth
1 eth.pendingTransactions 2[{ 3 blockHash: null, 4 blockNumber: null, 5 from: "0xea39a1b0b29ee5a8ce146e909a6ea5d264a651c1", 6 gas: 21000, 7 gasPrice: 1000000000, 8 hash: "0x15e8994cf920f311858d613fc8d614e7d912c0e6c1fc55ce8da770331fe16102", 9 input: "0x", 10 nonce: 0, 11 r: "0x11e1317a5fb9693d6944e564182b40ed2f39d2d84ee6337dcc9ef692af7d5ed0", 12 s: "0x7beb2d6297cd157af71400f62f89b1eb12a5a8f2ad2dcdfd576bff21d160256f", 13 to: "0xf7c13d18a61fef24726d1c18ab97bccdc0573cb0", 14 transactionIndex: null, 15 v: "0x41", 16 value: 100000000000000000000 17}]
どう対処したらよいか、教えていただけないでしょうか。
宜しくお願いいたします。
試したこと
account[0]、account[1]はunlock済みで、miner.start()でマイニングを実施しても、マイニングは進むのですが、トランザクションは送信されないです。
補足情報(FW/ツールのバージョンなど)
- ubuntu:18.04
- geth: 1.9.10-stable-58cf5686
あなたの回答
tips
プレビュー