diff options
| author | langerhans <[email protected]> | 2019-07-14 19:21:56 +0200 |
|---|---|---|
| committer | langerhans <[email protected]> | 2019-07-14 19:21:56 +0200 |
| commit | 5d58c691caf4fb9fe829ddaa54b213bc81ac5f33 (patch) | |
| tree | 7c81acbc897d88ac4832f7ddbb2ec78da8ae5de5 /qa | |
| parent | Merge branch 'rnicoll-rnicoll/1590-rebase' into 1.14-maint (diff) | |
| parent | Update to litecoin_scrypt (diff) | |
| download | discoin-5d58c691caf4fb9fe829ddaa54b213bc81ac5f33.tar.xz discoin-5d58c691caf4fb9fe829ddaa54b213bc81ac5f33.zip | |
Merge branch 'rnicoll-rnicoll/1.14-litecoin-scrypt' into 1.14-maint
Diffstat (limited to 'qa')
| -rw-r--r-- | qa/rpc-tests/test_framework/scrypt_auxpow.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/rpc-tests/test_framework/scrypt_auxpow.py b/qa/rpc-tests/test_framework/scrypt_auxpow.py index 1e95a5820..7cb68ee03 100644 --- a/qa/rpc-tests/test_framework/scrypt_auxpow.py +++ b/qa/rpc-tests/test_framework/scrypt_auxpow.py @@ -8,12 +8,12 @@ # solve an auxpow header and to generate auxpow blocks with scrypt. # extends and modifies auxpow module by Daniel Kraft. -# This module requires a built and installed version of the ltc_scrypt +# This module requires a built and installed version of the litecoin_scrypt # package, which can be downloaded from: # https://pypi.python.org/packages/source/l/ltc_scrypt/ltc_scrypt-1.0.tar.gz from .auxpow import * -import ltc_scrypt +import litecoin_scrypt def computeAuxpowWithChainId (block, target, chainid, ok): """ @@ -101,4 +101,4 @@ def getScryptPoW(hexData): """ data = bytes.fromhex(hexData) - return reverseHex(ltc_scrypt.getPoWHash(data).hex()) + return reverseHex(litecoin_scrypt.getPoWHash(data).hex()) |