diff --git a/truffle.js b/truffle.js index 76ffa59..9f1adbc 100644 --- a/truffle.js +++ b/truffle.js @@ -1,10 +1,10 @@ /* - * NB: since truffle-hdwallet-provider 0.0.5 you must wrap HDWallet providers in a + * NB: since truffle-hdwallet-provider 0.0.5 you must wrap HDWallet providers in a * function when declaring them. Failure to do so will cause commands to hang. ex: * ``` * mainnet: { - * provider: function() { - * return new HDWalletProvider(mnemonic, 'https://mainnet.infura.io/') + * provider: function() { + * return new HDWalletProvider(mnemonic, 'https://mainnet.infura.io/') * }, * network_id: '1', * gas: 4500000, @@ -14,8 +14,10 @@ module.exports = { compilers: { - solc: '0.4.25' - } + solc: { + version: '0.4.25' + } + } // See // to customize your Truffle configuration! };