0

我尝试使用 ROPSTEN 网络转移 ETH,起初我在 MetaMask 中进行了测试,两个地址都能够毫无问题地进行交易。所以,我开始在我的应用程序中尝试使用web3@1.0.0-beta.34,但是响应给了我错误:返回错误:gas * price + value 资金不足

我猜这个错误与天平或气体无关,只是不确定我做错了哪一部分。

const web3 = new Web3('https://ropsten.infura.io:443'); 
var count = await web3.eth.getTransactionCount(publicaddress);
var gasPrices = await this.getCurrentGasPrices();
var rawTransaction = {
  "from": selectedWallet.publicaddress,
  "nonce": count,
  "gasPrice": gasPrices.low * 100000000,
  "gas": web3.utils.toHex("519990"),
  "to": recipientaddress,
  "value": web3.utils.toWei(new Web3.utils.BN(setamount), 'ether'),
};
var privKey = new Buffer(privatekey,'hex');
var tx = new Tx(rawTransaction,{'chain': 'ropsten'});
tx.sign(privKey);
var serializedTx = tx.serialize();
web3.eth.sendSignedTransaction('0x' + serializedTx.toString('hex'), (err, hash) =>{
  if (!err){ //SUCCESS
      console.log("success", hash);
  }else{
      console.log(err);
  }
}); 
4

1 回答 1

0

它对我来说没有错误。

所以可能的原因:

  1. 天然气价格错误
  2. 设置量错误
  3. privatekey用前缀设置0x
于 2019-11-15T21:12:36.253 回答