本文主要是介绍truffle migrate一直报错,Transaction was not mined within 750 seconds, please make sure your transaction,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
执行truffle migrate,一直就是迁移不通过,到了750秒就报错,原因是因为没挖矿,没挖矿的原因有两种:
1、genesis.json的版本不对,
2、gas值给低了。
还有就是会报如下的错误:
Transaction was not mined within 750 seconds, please make sure your transaction was properly sent. Be aware that it might still be mined!
解决方案:
对于第一种情况:最后只能重新下载geth的其他版本和genesis.json的不同版本,来回试。最后用geth -1.10.19,genesis.json用官方的github上的版本才最终搞定。
或者因为CPU的问题,直接用POA的geth.
另外一种情况:一直在pending,就是不打包,只能用新的交易把这个交易给顶掉,设置更高的gasPrice,nonce值一样。
这篇关于truffle migrate一直报错,Transaction was not mined within 750 seconds, please make sure your transaction的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!