Skip to content

Commit

Permalink
remove limit for da contract bytecode length
Browse files Browse the repository at this point in the history
  • Loading branch information
quasisamurai committed Nov 1, 2018
1 parent 2f00dc4 commit b9b5883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blockchain/source/scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=$!
Expand Down

0 comments on commit b9b5883

Please sign in to comment.