From 6144c75abe9802186ae1ba038513eadef8f22363 Mon Sep 17 00:00:00 2001 From: oliveredget <188809800+oliveredget@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:59:35 +0800 Subject: [PATCH] fix: typo in qa/rpc-tests/keypool.py --- qa/rpc-tests/keypool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/rpc-tests/keypool.py b/qa/rpc-tests/keypool.py index 147050a16..fe7b2b4fe 100755 --- a/qa/rpc-tests/keypool.py +++ b/qa/rpc-tests/keypool.py @@ -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)