mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 06:49:38 -04:00
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.
This commit is contained in:
parent
4637cb1eec
commit
d065208f0f
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue