wallet: Fix already-loading error message grammar

This commit is contained in:
Fotis Koutoupas
2021-02-04 00:19:11 +02:00
parent ea96e17e1f
commit ae9d26a8f0
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ def test_load_unload(node, name):
node.loadwallet(name)
node.unloadwallet(name)
except JSONRPCException as e:
if e.error['code'] == -4 and 'Wallet already being loading' in e.error['message']:
if e.error['code'] == -4 and 'Wallet already loading' in e.error['message']:
got_loading_error = True
return