From 00a0bc71037b0e12e2fa097a383831c2072132cb Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Thu, 1 Feb 2018 11:10:56 +0100 Subject: [PATCH] Remove "TODO: fix off-by-one" --- qa/rpc-tests/wallet-dump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/rpc-tests/wallet-dump.py b/qa/rpc-tests/wallet-dump.py index 97cfa89ca..2e0a3267b 100755 --- a/qa/rpc-tests/wallet-dump.py +++ b/qa/rpc-tests/wallet-dump.py @@ -108,7 +108,7 @@ class WalletDumpTest(BitcoinTestFramework): assert_equal(found_addr, test_addr_count) # TODO clarify if we want the behavior that is tested below in Dash (only when HD seed was generated and not user-provided) # assert_equal(found_addr_chg, 180 + 50) # old reserve keys are marked as change now - assert_equal(found_addr_rsv, 180) # keypool size (TODO: fix off-by-one) + assert_equal(found_addr_rsv, 180) # keypool size if __name__ == '__main__': WalletDumpTest().main ()