sendSignedTransaction调用后生成了hash,但是一直不上链

web3.eth.getChainId((err, chainid) => {
if (err != null) {
console.log('区块链ID:' + chainid + ' 错误信息:' + err)
return
}
web3.eth.getTransactionCount(_from, 'latest', (error, txCount) => {
if (!error) {
const customCommon = Common.forCustomChain(
'mainnet', {
name: 'HUI',
networkId: 8888,
chainId: 8888
},
'petersburg'
)
var rawTx = {
from: '0xeE3feFf2B426c118C7878be4ff16D11ba894E344',
nonce: web3.utils.toHex(txCount +=27),
gasPrice: web3.utils.toHex(40),
gasLimit: web3.utils.toHex(8000000),
to: '0x1C6De259D344b3bA51eAE7700f3EFf3aF4f01B42',
value: '0x0',
data: contractObj.methods.transfer(toAddress, sendNum).encodeABI(),
chainId: web3.utils.toHex(chainid)
}
console.log('nonce-->', rawTx.nonce);

        var tx = new Tx(rawTx, { common: customCommon });


        tx.sign(pv);
        const serializedTx = tx.serialize()
        console.log('data-->', serializedTx.toJSON())
        // console.log('==>', rawTx.serialize().toJSON().data.toString())

        // console.log('Senders Address: ' + tx.getSenderAddress().toString('hex'))

        web3.eth.sendSignedTransaction('0x' + serializedTx.toString('hex'), function (err, hash) {
            console.log('err-->', err);
            console.log('hash-->', hash);
        })
            .on('receipt', console.log);
    }

})

})

请先 登录 后评论

2 个回答

pan
  1. nonce 必须自增,不能随便填写
  2. gasPrice 值太小节点可能不会给你打包,不知道该填多少就不要填会自动给你一个值
  3. 如果还发送不出去可能是因为之前的交易堵住了,换一个账号试试
请先 登录 后评论
bcskill.com

目前看主要问题是 nonce设置的不对,

nonce: web3.utils.toHex(txCount +=27),

应该是递增的

nonce: web3.utils.toHex(txCount +=1),

对于nonce的解释如下
如果当前getTransactionCount查询地址最新的nonce 是1,那你本次发送的交易nonce 需要是2,如果你写的3,那此笔交易就会进入节点txpool 的queued队列,直到你补齐nonce,也就是再发送一个nonce 为2的交易,被执行后,才会执行前面发送nonce 3的交易,不然nonce 3 一直处于等待执行。

请先 登录 后评论
  • 2 关注
  • 0 收藏,2013 浏览
  • 小康 提出于 2023-02-15 16:12