Update to truffle 4.0.0

had to up the gasLimit in test.sh to avoid an out of gas error when deploying the scripts
This commit is contained in:
Alejandro Santander
2017-11-21 16:20:47 -03:00
parent 12303ceaf5
commit f28c245a3c
3 changed files with 42 additions and 35 deletions

View File

@ -41,7 +41,7 @@ start_testrpc() {
if [ "$SOLIDITY_COVERAGE" = true ]; then
node_modules/.bin/testrpc-sc --gasLimit 0xfffffffffff --port "$testrpc_port" "${accounts[@]}" > /dev/null &
else
node_modules/.bin/testrpc "${accounts[@]}" > /dev/null &
node_modules/.bin/testrpc --gasLimit 0xfffffffffff "${accounts[@]}" > /dev/null &
fi
testrpc_pid=$!