diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-08-19 17:27:58 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-08-19 17:28:00 +0200 |
commit | 80cddbbba99fc82e52e59cf0928fdc8d85cd29af (patch) | |
tree | aaa43a89f0fe8843b565f817f6a2b9469c1b90e6 /qa | |
parent | a6f2affde878d4f16aee6aa81b0d5cf36afdbf2d (diff) | |
parent | 9f68ed6b6d1a9c6436ce37913666165f2b180ee3 (diff) |
Merge pull request #6539
9f68ed6 typofixes (found by misspell_fixer) (Veres Lajos)
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/rpc-tests/rest.py | 2 | ||||
-rwxr-xr-x | qa/rpc-tests/test_framework/comptool.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/rest.py b/qa/rpc-tests/rest.py index 2da5219507..3a035f996c 100755 --- a/qa/rpc-tests/rest.py +++ b/qa/rpc-tests/rest.py @@ -200,7 +200,7 @@ class RESTTest (BitcoinTestFramework): response = http_get_call(url.hostname, url.port, '/rest/getutxos'+json_request+self.FORMAT_SEPARATOR+'json', '', True) assert_equal(response.status, 200) #must be a 500 because we exceeding the limits - self.nodes[0].generate(1) #generate block to not affect upcomming tests + self.nodes[0].generate(1) #generate block to not affect upcoming tests self.sync_all() ################ diff --git a/qa/rpc-tests/test_framework/comptool.py b/qa/rpc-tests/test_framework/comptool.py index ffa9226a32..b945f1bf29 100755 --- a/qa/rpc-tests/test_framework/comptool.py +++ b/qa/rpc-tests/test_framework/comptool.py @@ -134,7 +134,7 @@ class TestNode(NodeConnCB): # is reached) and then sent out in one inv message. Then the final block # will be synced across all connections, and the outcome of the final # block will be tested. -# sync_every_tx: analagous to behavior for sync_every_block, except if outcome +# sync_every_tx: analogous to behavior for sync_every_block, except if outcome # on the final tx is None, then contents of entire mempool are compared # across all connections. (If outcome of final tx is specified as true # or false, then only the last tx is tested against outcome.) |