我正在尝试实现令牌转移,我在第一次测试时做到了。
它能够签入https://etherscan.io/tx/0x91ed7e481e0cced5600bb91498017a9ec02064710395363f57f2aa8c0a480b44
但我收到错误消息,例如“交易未在 50 个区块内开采,请确保您的交易已正确发送。请注意,它可能仍被开采!
让我知道是什么问题。
const abi = [...];
const from = '0x...';
const gas = 50000;
const gasPrice = 30;
const decimal = Number(token.decimals); //token.decimals = 18
const contract = new this.web3.eth.Contract(abi, token.address, {
from: from,
gas: gas,
gasPrice: gasPrice * 1000000000
});
return contract.methods.transfer(to, value *
Math.pow(10, decimal)).send().then(res => {
return res;
}).catch(err => {
return err;
});
这是简单的代码,但它在第一时间被唤醒。我能够了解。请帮帮我