Go-Ethereum
松露:遷移到 ropsten,未知網路“真實”錯誤
我正在嘗試使用以下方法將正在進行的 dapp 部署到 ropsten 網路:
truffle migrate --network ropsten
我有一個在終端中執行的 geth 實例,我收到以下錯誤:
Unknown network "true". See your Truffle configuration file for available networks.
這是我的 truffle.js 文件:
module.exports = { networks: { development: { host: "localhost", port: 8545, network_id: "*" // Match any network id }, ropsten: { network_id: 3, host: "localhost", from: "<<Address is usually here>>", port: 8545, gas: 2900000 } } };
編輯:我正在使用 ubuntu 進行開發
全新安裝松露後問題已解決
如果您使用的是 Windows,請確保您使用
truffle-config.js
其他用途truffle.js
進行配置。我通常保持兩個文件同步以避免混淆。