Skip to content

Commit

Permalink
Fix chainId in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
k1rill-fedoseev committed May 13, 2021
1 parent 85f2b4e commit 92de2c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'
services:
ganache:
image: trufflesuite/ganache-cli
command: --deterministic --gasLimit 20000000 --allowUnlimitedContractSize
command: --deterministic --gasLimit 20000000 --allowUnlimitedContractSize --chainId 1337
ports:
- 8545:8545
compound:
Expand Down
2 changes: 1 addition & 1 deletion truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
host: '127.0.0.1',
port: 8545,
network_id: '*',
gasPrice: 100000000000,
gasPrice: 1000000000,
gas: 10000000,
disableConfirmationListener: true,
},
Expand Down

0 comments on commit 92de2c7

Please sign in to comment.