diff --git a/blockchain/source/scripts/test.sh b/blockchain/source/scripts/test.sh index 2da036a27..769a28685 100755 --- a/blockchain/source/scripts/test.sh +++ b/blockchain/source/scripts/test.sh @@ -40,9 +40,9 @@ start_testrpc() { ) if [ "$SOLIDITY_COVERAGE" = true ]; then - node_modules/.bin/testrpc-sc --gasLimit 0xfffffffffff --port "$testrpc_port" "${accounts[@]}" > /dev/null & + node_modules/.bin/testrpc-sc --gasLimit 0xfffffffffff --allowUnlimitedContractSize --port "$testrpc_port" "${accounts[@]}" > /dev/null & else - node_modules/.bin/ganache-cli --gasLimit 0xfffffffffff --port "$testrpc_port" "${accounts[@]}" > /dev/null & + node_modules/.bin/ganache-cli --gasLimit 0xfffffffffff --allowUnlimitedContractSize --port "$testrpc_port" "${accounts[@]}" > /dev/null & fi testrpc_pid=$!