NodeJS Web3:获取返回的事务哈希,但无法位于区块浏览器中

时间:2018-07-09 05:11:10

标签: node.js transactions ethereum solidity web3

一直出现以下错误之后:

  

资金不足。您尝试从其发送交易的帐户   没有足够的资金。需要250000000000000并获得:0。

我从gacPrice中删除了txData,如下:

const txData = {
        nonce: web3.utils.toHex(txCount),
        gasLimit: web3.utils.toHex(40000),
        //gasPrice: web3.utils.toHex(10e9),
        to: addressTo,
        from: addressFrom,
        data: functionAbi
}

现在我得到一个返回的tx hash,但是无法通过etherscan或任何其他blockexplorer找到该tx hash。我还能做些什么来在Kovan上成功执行事务?这是我的智能合约:

pragma solidity ^0.4.24;

contract Test2 {
    address public bank;

    struct Box {
        uint size;
    }
    Box public box;

    constructor() public {
        box.size = 3;
        bank = 0xa2079636...;
    }

    function changeBox(uint _change) public {
        box.size = _change;
    }

    function getBox() public returns (uint) {
        return box.size;
    }  
}  

这是我通过web3.js(完整代码)执行它的方式:

const Web3 = require('web3')
const Tx = require('ethereumjs-tx')

const web3 = new Web3(new Web3.providers.HttpProvider('https://kovan.infura.io/apikey'))
const addressFrom = '0x002D18...'
const privKey = '240462...'
const addressTo = '0x36075430619b21Fff798454e2D5C81E9C18DEe81'

var contractABI = new web3.eth.Contract(
    [...abi...], addressTo);

const contractFunction = contractABI.methods.changeBox(5);
const functionAbi = contractFunction.encodeABI();

function sendSigned(txData, callback) {
    //const privateKey = new Buffer(config.privKey, 'hex')
    const privateKey = Buffer.from(privKey, 'hex');
    const transaction = new Tx(txData)
    transaction.sign(privateKey)
    const serializedTx = transaction.serialize().toString('hex')
    web3.eth.sendSignedTransaction('0x' + serializedTx, callback)
}

web3.eth.getTransactionCount(addressFrom).then(txCount => {
    // construct the transaction data
    const txData = {
        nonce: web3.utils.toHex(txCount),
        gasLimit: web3.utils.toHex(40000),
        //gasPrice: web3.utils.toHex(10e9), // 10 Gwei
        to: addressTo,
        from: addressFrom,
        data: functionAbi
        //value: web3.utils.toHex(web3.utils.toWei(123, 'wei'))
  }

    sendSigned(txData, function(err, result) {
        if (err) return console.log('error', err)
        console.log('sent', result)
    })

})

1 个答案:

答案 0 :(得分:0)

从Web3接收交易地址可能并不总是成功完成交易。Web3返回所有已提交交易的交易哈希。 检查回调以识别事务处理的状态和实际的块地址(如果成功)。