truffle 框架complie错误。

第一次使用trulle框架编译合约发现编译失败,原因是没有在truffle-config.js文件中加入编译器版本。

 

module.exports = {
  // See <http://truffleframework.com/docs/advanced/configuration>
  // to customize your Truffle configuration!
    compilers: {
        solc: {
            version: "0.4.24"
        }
    }
};

 

posted on 2020-03-15 20:36  biwentao  阅读(168)  评论(0编辑  收藏  举报

导航