当我truffle migrate
在 build/contracts 目录中运行所有 .json 文件时,它们的网络字段都丢失了。我正在尝试部署到 testrpc。
这是我的 truffle.js 文件:
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gas: 4500000
}
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
},
mocha: {
bail: true
}
};
有谁知道这可能是什么原因造成的?
谢谢!