diff options
| author | practicalswift <[email protected]> | 2018-08-14 09:27:30 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-09-04 13:11:26 +0200 |
| commit | ada356208e153e088c729c102d5d79c9c9d66f1a (patch) | |
| tree | f379a875fbf5208de2fe211c0f5c343bc1bc51f0 /test/functional/mining_getblocktemplate_longpoll.py | |
| parent | Merge #11599: scripted-diff: Small locking rename (diff) | |
| download | discoin-ada356208e153e088c729c102d5d79c9c9d66f1a.tar.xz discoin-ada356208e153e088c729c102d5d79c9c9d66f1a.zip | |
Fix typos reported by codespell
Diffstat (limited to 'test/functional/mining_getblocktemplate_longpoll.py')
| -rwxr-xr-x | test/functional/mining_getblocktemplate_longpoll.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/mining_getblocktemplate_longpoll.py b/test/functional/mining_getblocktemplate_longpoll.py index 2bcbe8db7..1259754c5 100755 --- a/test/functional/mining_getblocktemplate_longpoll.py +++ b/test/functional/mining_getblocktemplate_longpoll.py @@ -15,8 +15,8 @@ class LongpollThread(threading.Thread): def __init__(self, node): threading.Thread.__init__(self) # query current longpollid - templat = node.getblocktemplate() - self.longpollid = templat['longpollid'] + template = node.getblocktemplate() + self.longpollid = template['longpollid'] # create a new connection to the node, we can't use the same # connection from two threads self.node = get_rpc_proxy(node.url, 1, timeout=600, coveragedir=node.coverage_dir) @@ -31,11 +31,11 @@ class GetBlockTemplateLPTest(BitcoinTestFramework): def run_test(self): self.log.info("Warning: this test will take about 70 seconds in the best case. Be patient.") self.nodes[0].generate(10) - templat = self.nodes[0].getblocktemplate() - longpollid = templat['longpollid'] + template = self.nodes[0].getblocktemplate() + longpollid = template['longpollid'] # longpollid should not change between successive invocations if nothing else happens - templat2 = self.nodes[0].getblocktemplate() - assert(templat2['longpollid'] == longpollid) + template2 = self.nodes[0].getblocktemplate() + assert(template2['longpollid'] == longpollid) # Test 1: test that the longpolling wait if we do nothing thr = LongpollThread(self.nodes[0]) |