Skip to content

Commit

Permalink
chore: minor tweaks to truffle config (#253)
Browse files Browse the repository at this point in the history
* remove double truffle compile call

* proper port for local ganache
  • Loading branch information
troggy authored and johannbarbie committed Nov 19, 2019
1 parent 8d61b6c commit cda3525
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"description": "LeapDAO bridge contracts (Plasma + PoS)",
"main": "truffle-config.js",
"scripts": {
"test": "truffle compile && scripts/test.sh",
"test": "scripts/test.sh",
"clean": "rm -rf build/",
"compile": "truffle compile",
"deploy": "truffle migrate",
"deploy:plasma": "truffle migrate -f 3",
"test-ci": "yarn run clean && yarn run compile && scripts/test.sh",
"test-ci": "yarn run clean && scripts/test.sh",
"lint": "yarn run lint:contracts && yarn run lint:js",
"lint:contracts": "solium -d contracts/ --fix",
"lint:js": "eslint test/ --fix",
Expand Down
2 changes: 1 addition & 1 deletion truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = {
},
ganache: {
host: 'localhost',
port: 7545,
port: 8545,
network_id: 5777
},
coverage: {
Expand Down

0 comments on commit cda3525

Please sign in to comment.