Fix typos

This commit is contained in:
Dimitris Apostolou 2022-01-02 23:16:01 +02:00
parent 0931aa8908
commit 2006939d27
No known key found for this signature in database
GPG Key ID: 4B5D20E938204A8A
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ class WalletShieldCoinbaseTest (BitcoinTestFramework):
assert_equal(result["remainingUTXOs"], Decimal('0'))
opid2 = result['opid']
# wait for both aysnc operations to complete
# wait for both async operations to complete
wait_and_assert_operationid_status(self.nodes[0], opid1)
wait_and_assert_operationid_status(self.nodes[0], opid2)

View File

@ -172,7 +172,7 @@ def wait_for_balance(zcash, zaddr, expected=None):
ttl = 300
def wait_and_check_balance(results, case, zcash, addr, expected):
#Wait for aysnc call to finish and persist completely to caller
#Wait for async call to finish and persist completely to caller
time.sleep(5)
balance = wait_for_balance(zcash, addr, expected)
if balance != expected and results is not None and len(case) > 0: