本文主要是介绍以太坊truffle开发问题记录(不断更新),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. truffle test 报错 ReferenceError: regeneratorRuntime is not defined
解决方法:输入以下命令,并且改配置文件
参考:https://stackoverflow.com/questions/33527653/babel-6-regeneratorruntime-is-not-defined
2. truffle compile 报错 Compilation error: Stack too deep
解决方法:The limit of having not more than 16 local variables could be a problem here.
函数里不能超过16个局部变量,需要检查报错的函数,减少局部变量个数。
3. truffle migrate 报错 Attempting to run transaction which calls a contract function, but recipient address 0x44654655b0c7097050754d8aa0b03f7ed85e8c26 is not acontract address
解决方法:使用 truffle migrate --reset
这篇关于以太坊truffle开发问题记录(不断更新)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!