diff options
| author | Ross Nicoll <[email protected]> | 2018-01-20 17:56:53 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2018-09-19 22:11:47 +0100 |
| commit | b6b5ee7502bf646bcd97a9f8fe1b0b8d78e3c9ae (patch) | |
| tree | 0d36b3a80575ee685b4760a3cd1e4fa6f7223e4a /qa/pull-tester/install-deps.sh | |
| parent | Replace HMAC_SHA256 with Bitcoin's version (#1438) (diff) | |
| download | discoin-b6b5ee7502bf646bcd97a9f8fe1b0b8d78e3c9ae.tar.xz discoin-b6b5ee7502bf646bcd97a9f8fe1b0b8d78e3c9ae.zip | |
Update RPC tests for Dogecoin (#1431)
* Make most of the RPC tests pass
* Add AUXPoW rpc tests
- Tests the auxpow rpc interface `getauxblock`
- Tests consensus constraints for auxpow:
- Minimum block height
- Valid scrypt proof of work
- Foreign chain ID
Diffstat (limited to 'qa/pull-tester/install-deps.sh')
| -rwxr-xr-x | qa/pull-tester/install-deps.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qa/pull-tester/install-deps.sh b/qa/pull-tester/install-deps.sh new file mode 100755 index 000000000..e54bfe1cd --- /dev/null +++ b/qa/pull-tester/install-deps.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# installs test dependencies + +wget https://github.com/langerhans/ltc-scrypt/archive/master.tar.gz +echo "ade3cdf498927990b6d153d74f0da104114e838584be5a81bef8972accd03341 master.tar.gz" | sha256sum -c +tar zxf master.tar.gz +pushd ltc-scrypt-master +python3 setup.py install --user +popd |