eth geth 因gas问题导致交易哈希堵塞转账失败处理
eth.resend = function (tx, gasPrice, gas) {
if (gasPrice) {
tx.gasPrice = gasPrice;
}
if (gas) {
tx.gas = gas;
}
tx.data = tx.input;
return eth.sendTransaction(tx);
};
eth.resendgwei = function (tx, gasPriceInGwei, gas) {
if (gasPri.
转载
2020-12-13 15:36:14 ·
1197 阅读 ·
0 评论