fix: typo in qa/rpc-tests/keypool.py

This commit is contained in:
oliveredget 2025-01-01 15:59:35 +08:00
parent b8e2670cd0
commit 6144c75abe
No known key found for this signature in database
GPG Key ID: FC23EA5AECCBE0C0

View File

@ -69,7 +69,7 @@ class KeyPoolTest(BitcoinTestFramework):
nodes[0].generate(1)
try:
nodes[0].generate(1)
raise AssertionError('Keypool should be exhausted after three addesses')
raise AssertionError('Keypool should be exhausted after three addresses')
except JSONRPCException as e:
assert(e.error['code']==-12)