以太坊待定交易

时间:2017-08-25 16:06:26

标签: blockchain ethereum smartcontracts

我正在尝试发送交易。

eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[1], value: web3.toWei(5, "ether")})

eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[1], value: web3.toWei(5, "ether")})
  

INFO [08-25 | 21:14:21]提交的交易
  fullhash = 0xe1b58ddcb6d8c3f3a8308e0eb275f10c0c3b7bd8807cd24ff6a315a3917ab2a5   收件人= 0x939f34bc9253a62927871c889bcf62f398d264a6信息   [08-25 | 21:14:29]提交的交易
  fullhash = 0x33ca6bb00a70de13bd8b1fdec5d0a7995ad09a90e416ac8ab686fc650a324331   收件人= 0x939f34bc9253a62927871c889bcf62f398d264a6信息   [08-25 | 21:14:57]更新的挖掘线程thread = 1   INFO [08-25 | 21:14:57]更新了事务池价格阈​​值   价格= 18000000000 INFO [08-25 | 21:14:57]开始采矿作业   INFO [08-25 | 21:14:57]承诺新的采矿工作   number = 1 txs = 2 uncles = 0 elapsed = 73.574ms

但是当我跑步时

eth.pendingTransactions

我能够看到上面发送的交易清单  所以我的问题是 交易何时开采?

P.S.-我在我的本地机器(私人区块链)上运行它

提前致谢:)

1 个答案:

答案 0 :(得分:1)

如果您正在使用私有区块链,则可以使用控制台运行<int-aws:s3-outbound-channel-adapter>函数。之后,将需要5-6分钟,矿工将准备接您的交易,自动增加的coinbase帐户余额。

有时候,如果您随交易发送的汽油和汽油价格少得多,则可能会导致交易卡住。因此,请在您的交易中发送足够的汽油。它将被执行。

您还可以按照以下命令发送汽油和汽油价格-

miner.start()

希望这会有所帮助