From 5f2e015aa3b5d05d10486d579f12a744bbe10ed8 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Wed, 15 Apr 2020 13:24:00 +0300 Subject: [PATCH] Fix typos --- qa/rpc-tests/test_framework/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py index ffeb48808..308a312ac 100644 --- a/qa/rpc-tests/test_framework/util.py +++ b/qa/rpc-tests/test_framework/util.py @@ -162,7 +162,7 @@ def wait_for_bitcoind_start(process, url, i): raise # unknown IO error except JSONRPCException as e: # Initialization phase if e.error['code'] != -28: # RPC in warmup? - raise # unkown JSON RPC exception + raise # unknown JSON RPC exception time.sleep(0.25) def initialize_chain(test_dir): @@ -536,7 +536,7 @@ def wait_and_assert_operationid_status_result(node, myopid, in_status='success', break time.sleep(1) - assert_true(result is not None, "timeout occured") + assert_true(result is not None, "timeout occurred") status = result['status'] debug = os.getenv("PYTHON_DEBUG", "")