6 lines
187 B
Bash
6 lines
187 B
Bash
|
#!/bin/sh
|
||
|
# hardcoded timeout was too short for big contracts
|
||
|
sed -i \
|
||
|
's/timeout\: [0-9]\+,/timeout\: 40000,/g' \
|
||
|
node_modules/@trufflesuite/web3-provider-engine/subproviders/rpc.js
|