diff options
author | Joao Fonseca <jpdf.fonseca@gmail.com> | 2016-04-19 12:22:11 +0100 |
---|---|---|
committer | Joao Fonseca <jpdf.fonseca@gmail.com> | 2016-04-19 12:29:19 +0100 |
commit | fa942c755ab513829dcab27487ba1e7ab5a806ee (patch) | |
tree | 0cc57391104a3c1c1e0aea1a937a8565160a0548 /qa/rpc-tests/getblocktemplate_longpoll.py | |
parent | 187186b0fe039010ea4b81edb671b9bdfc63d29a (diff) |
Move method to check matches within arrays on util.py
Diffstat (limited to 'qa/rpc-tests/getblocktemplate_longpoll.py')
-rwxr-xr-x | qa/rpc-tests/getblocktemplate_longpoll.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/qa/rpc-tests/getblocktemplate_longpoll.py b/qa/rpc-tests/getblocktemplate_longpoll.py index 3e85957ae2..e2a839f718 100755 --- a/qa/rpc-tests/getblocktemplate_longpoll.py +++ b/qa/rpc-tests/getblocktemplate_longpoll.py @@ -6,28 +6,6 @@ from test_framework.test_framework import BitcoinTestFramework from test_framework.util import * - -def check_array_result(object_array, to_match, expected): - """ - Pass in array of JSON objects, a dictionary with key/value pairs - to match against, and another dictionary with expected key/value - pairs. - """ - num_matched = 0 - for item in object_array: - all_match = True - for key,value in to_match.items(): - if item[key] != value: - all_match = False - if not all_match: - continue - for key,value in expected.items(): - if item[key] != value: - raise AssertionError("%s : expected %s=%s"%(str(item), str(key), str(value))) - num_matched = num_matched+1 - if num_matched == 0: - raise AssertionError("No objects matched %s"%(str(to_match))) - import threading class LongpollThread(threading.Thread): |