From d065208f0f06309d776114d777bb16b8c38af3f1 Mon Sep 17 00:00:00 2001 From: Chandra Pratap Date: Thu, 13 Mar 2025 12:48:46 +0000 Subject: [PATCH] test: get rid of redundant TODO tag The 'FEE' parameter in test/functional/feature_dbcrash.py:: generate_small_transaction() is not a fee rate, but an absolute fee. Hence, it doesn't make sense to replace it with node relay based fee calculation. Get rid of the TODO comment suggesting otherwise. --- test/functional/feature_dbcrash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/feature_dbcrash.py b/test/functional/feature_dbcrash.py index f1aa3961e33..aa2ea729ec5 100755 --- a/test/functional/feature_dbcrash.py +++ b/test/functional/feature_dbcrash.py @@ -184,7 +184,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework): assert_equal(nodei_utxo_hash, node3_utxo_hash) def generate_small_transactions(self, node, count, utxo_list): - FEE = 1000 # TODO: replace this with node relay fee based calculation + FEE = 1000 num_transactions = 0 random.shuffle(utxo_list) while len(utxo_list) >= 2 and num_transactions < count: