From 986ddcab58c80046a054fb21a4eed998a5439f77 Mon Sep 17 00:00:00 2001 From: Colin Axner Date: Mon, 3 Aug 2020 12:34:55 +0200 Subject: [PATCH 1/2] fix build --- .travis.yml | 2 +- truffle-config.js | 4 ---- truffle.js | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 truffle-config.js diff --git a/.travis.yml b/.travis.yml index 4b53b97..4e41432 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ before_script: - npm install script: - - ganache-cli -m "they only media any modify banner suffer pole tag rule creek harvest" > /dev/null & + - ganache-cli --port 7545 --networkId 5777 -m "they only media any modify banner suffer pole tag rule creek harvest" > /dev/null & - sleep 5 - truffle migrate - truffle test diff --git a/truffle-config.js b/truffle-config.js deleted file mode 100644 index a6330d6..0000000 --- a/truffle-config.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = { - // See - // to customize your Truffle configuration! -}; diff --git a/truffle.js b/truffle.js index 96e4126..ccd50cf 100644 --- a/truffle.js +++ b/truffle.js @@ -4,7 +4,7 @@ module.exports = { networks: { development: { host: "localhost", - port: 8545, + port: 7545, network_id: "*" // Match any network id } } From 0f0820c7b77c1ddf9e9b92c9174a49904a551606 Mon Sep 17 00:00:00 2001 From: Colin Axner Date: Mon, 3 Aug 2020 12:40:55 +0200 Subject: [PATCH 2/2] bump travis version --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4e41432..4c35405 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: node_js node_js: "node" before_script: - - npm install -g truffle@5.0.2 ganache-cli@6.2.5 + - npm install -g truffle@5.1.37 ganache-cli@6.9.1 - npm install script: