change ganache port to 8547 so it doesn't clash with vanilla parity rpc port

This commit is contained in:
Maximilian Krüger 2018-01-04 17:38:47 +01:00
parent ee49dc5c3b
commit a7910aa5cd
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
"dependencies": {},
"scripts": {
"ci": "concurrently \"yarn run solium\" \"yarn run truffle-with-rpc\" \"yarn run solidity-coverage\"",
"ganache": "ganache-cli -p 8545",
"ganache": "ganache-cli -p 8547",
"solidity-coverage": "solidity-coverage",
"solium": "solium --dir contracts/",
"test": "yarn run truffle-with-rpc",

View File

@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
port: 8547,
network_id: "*" // Match any network id
}
}