diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-17 12:00:31 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-17 12:00:47 +0200 |
| commit | b41ac928b89f0017085fca9a728a6a1e6a82ea72 (patch) | |
| tree | a063b6d354289919f192e79f32d10625e4ea6aaf | |
| parent | Merge #8520: build: Remove check for `openssl/ec.h` (diff) | |
| parent | qa: Remove duplicate `hash160` implementation (diff) | |
| download | discoin-b41ac928b89f0017085fca9a728a6a1e6a82ea72.tar.xz discoin-b41ac928b89f0017085fca9a728a6a1e6a82ea72.zip | |
Merge #8521: qa: Remove duplicate `hash160` implementation
c1582d5 qa: Remove duplicate `hash160` implementation (Wladimir J. van der Laan)
| -rwxr-xr-x | qa/rpc-tests/p2p-fullblocktest.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/qa/rpc-tests/p2p-fullblocktest.py b/qa/rpc-tests/p2p-fullblocktest.py index 17fd40ef1..9aee81164 100755 --- a/qa/rpc-tests/p2p-fullblocktest.py +++ b/qa/rpc-tests/p2p-fullblocktest.py @@ -25,9 +25,6 @@ We use the testing framework in which we expect a particular answer from each test. ''' -def hash160(s): - return hashlib.new('ripemd160', sha256(s)).digest() - # Use this class for tests that require behavior other than normal "mininode" behavior. # For now, it is used to serialize a bloated varint (b64). class CBrokenBlock(CBlock): |