Skip to content

Commit 7203d91

Browse files
committed
Fix random fee generation
1 parent 0ab665d commit 7203d91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/feature_blockindexstats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def run_test(self):
106106
for _ in range(NUM_BLOCKS):
107107
# 1...4=(t->t) 5=(t->z) 6=(z->t) 7=(z->z)
108108
tx_kind = random.randint(1, 7)
109-
fee = round(0.0001 * random.randint(3, 50), 8)
109+
fee = round(0.0001 * random.randint(5, 50), 8)
110110
if tx_kind < 5:
111111
# transparent tx
112112
self.log.info("Sending t->t with fee %.8f" % fee)

0 commit comments

Comments
 (0)