diff options
author | chriseth <chris@ethereum.org> | 2018-12-13 22:58:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-13 22:58:33 +0800 |
commit | 996bfb2a83bf1d99192575fa05ba43e4bc05ef0c (patch) | |
tree | b9e07258135cf3d0b8aeeb422f1d5172db75b93f /scripts/tests.sh | |
parent | 1d274a8924a9a26f75adbea6dfed7883e1aaa029 (diff) | |
parent | 02a8e5d4e999f0e3610e124c74b7b1492852fbe0 (diff) | |
download | dexon-solidity-996bfb2a83bf1d99192575fa05ba43e4bc05ef0c.tar dexon-solidity-996bfb2a83bf1d99192575fa05ba43e4bc05ef0c.tar.gz dexon-solidity-996bfb2a83bf1d99192575fa05ba43e4bc05ef0c.tar.bz2 dexon-solidity-996bfb2a83bf1d99192575fa05ba43e4bc05ef0c.tar.lz dexon-solidity-996bfb2a83bf1d99192575fa05ba43e4bc05ef0c.tar.xz dexon-solidity-996bfb2a83bf1d99192575fa05ba43e4bc05ef0c.tar.zst dexon-solidity-996bfb2a83bf1d99192575fa05ba43e4bc05ef0c.zip |
Merge pull request #5648 from ethereum/useMemoryDB
Update to use memorydb for aleth.
Diffstat (limited to 'scripts/tests.sh')
-rwxr-xr-x | scripts/tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh index 1a8a32cf..8a7a2fdc 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -149,7 +149,7 @@ function download_aleth() # echos the PID function run_aleth() { - $ALETH_PATH --test -d "${WORKDIR}" >/dev/null 2>&1 & + $ALETH_PATH --db memorydb --test -d "${WORKDIR}" >/dev/null 2>&1 & echo $! # Wait until the IPC endpoint is available. while [ ! -S "${WORKDIR}/geth.ipc" ] ; do sleep 1; done |