我正在尝试制作示例智能合约,并迁移到以太坊扫描浏览器,但无法部署。我正在使用松露,infura和metamask来测试我的应用程序。我能够成功编译它,但是当我尝试运行迁移时,它显示everything is upto date, nothing to compile
。我的truffle.js文件如下所示
ropsten: {
provider: function (){
return new HDWalletProvider(mnemonic,
'https://ropsten.infura.io/v3/api_key')
},
network_id: 3,
from: 'address',
gasPrice: 25000000000000
}
}
答案 0 :(得分:1)