Skip to content

Commit

Permalink
Merge pull request #1 from dolebas/patch-1
Browse files Browse the repository at this point in the history
Update truffle.js, add missing "networks: {"
  • Loading branch information
okstaticzero committed Apr 14, 2018
2 parents efebd69 + a88d761 commit 03dbdee
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/ethereum/truffle.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ var mnemonic = 'candy maple cake sugar pudding cream honey rich smooth crumble s
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
rinkeby: {
provider: new HDWalletProvider(
mnemonic,
'https://rinkeby.infura.io/XAmfM8SVSh5OkuiYMIBx',
1
),
network_id: 5,
gas: 6712388,
gasPrice: 10000000
networks: {
rinkeby: {
provider: new HDWalletProvider(
mnemonic,
'https://rinkeby.infura.io/XAmfM8SVSh5OkuiYMIBx',
1
),
network_id: 5,
gas: 6712388,
gasPrice: 10000000
},
},
},
};
};

0 comments on commit 03dbdee

Please sign in to comment.