From d444f8b586285e6352559502470697c22e51dc3c Mon Sep 17 00:00:00 2001 From: Greg Pfeil Date: Tue, 22 Nov 2022 16:44:27 -0700 Subject: [PATCH] Fix small error in code review suggestions --- qa/rpc-tests/wallet_listunspent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/rpc-tests/wallet_listunspent.py b/qa/rpc-tests/wallet_listunspent.py index 5df126641..182c793f4 100755 --- a/qa/rpc-tests/wallet_listunspent.py +++ b/qa/rpc-tests/wallet_listunspent.py @@ -124,7 +124,7 @@ class WalletListUnspent(BitcoinTestFramework): assert_equal(self.matured_at_height(205), expected_matured_at_height(205) - 10 + 10) assert_equal(self.matured_at_height(207), expected_matured_at_height(207) - 10 + 10 - 10) assert_equal(self.matured_at_height(209), expected_matured_at_height(209) - 10 + 10 - 10 - 10) - assert_equal(self.matured_at_height(211), expected_matured_at_height(209) - 10 + 10 - 10 - 10 - 10) + assert_equal(self.matured_at_height(211), expected_matured_at_height(211) - 10 + 10 - 10 - 10 - 10) if __name__ == '__main__': WalletListUnspent().main()