1
0
mirror of https://github.com/oceanprotocol/barge.git synced 2024-11-21 17:27:00 +01:00

Merge pull request #402 from oceanprotocol/feat/ganache_unlimited_contract

Allow unlimited contract size
This commit is contained in:
Alex Coseru 2024-08-08 08:12:57 +03:00 committed by GitHub
commit 4020e80f05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,4 +7,4 @@ services:
networks:
backend:
ipv4_address: 172.15.0.3
entrypoint: ["node","/app/dist/node/cli.js","--database.dbPath", "./ganache_cache","--chain.chainId","0x2324","--chain.networkId","0x2324","-a","20","-l","50000000","-g","1","--chain.hardfork","${GANACHE_FORK}","--miner.blockTime","${GANACHE_BLOCKTIME}","--miner.instamine","${GANACHE_INSTAMINE}","--wallet.mnemonic","${GANACHE_MNEMONIC}", "-e","1000000"]
entrypoint: ["node","/app/dist/node/cli.js","--database.dbPath", "./ganache_cache","--chain.allowUnlimitedContractSize","true","--chain.chainId","0x2324","--chain.networkId","0x2324","-a","20","-l","50000000","-g","1","--chain.hardfork","${GANACHE_FORK}","--miner.blockTime","${GANACHE_BLOCKTIME}","--miner.instamine","${GANACHE_INSTAMINE}","--wallet.mnemonic","${GANACHE_MNEMONIC}", "-e","1000000"]