我使用"web3.eth.getTransaction(address)"
进行交易。
之后,它没有错误
“节点错误:{”代码“:-32000,”消息“:”现在太低“}”
检查随机数后,它总是返回0。
我使用
这是我的代码。
web3.eth.getTransactionCount(senderAddr, 'pending').then(function(count) {
count += 1;
var transactionObject = {
nonce: web3.utils.toHex(count.toString(16)),
from: sender,
to: receiver,
gasPrice: web3.utils.toHex(15000),
value: web3.utils.toHex(web3.utils.toBN(web3.utils.toWei(amount.toString(), 'ether'))),
data: '',
chainId: 3
}
}
我该如何解决?
请帮助我...谢谢
答案 0 :(得分:0)
也许您所连接的节点给您错误的nonce
。
仅供参考,请确保您删除count += 1;
行。因为nonce
是0-indexed