diff --git a/test/docker-compose.yml b/test/docker-compose.yml index a6b6223..1044dfe 100644 --- a/test/docker-compose.yml +++ b/test/docker-compose.yml @@ -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: diff --git a/truffle-config.js b/truffle-config.js index 9e133ff..c7f8fb9 100644 --- a/truffle-config.js +++ b/truffle-config.js @@ -5,7 +5,7 @@ module.exports = { host: '127.0.0.1', port: 8545, network_id: '*', - gasPrice: 100000000000, + gasPrice: 1000000000, gas: 10000000, disableConfirmationListener: true, },