Browse Source

fix: fee_to_depth

3.1
ThomasV 7 years ago
parent
commit
81bd8d8d67
  1. 2
      lib/simple_config.py

2
lib/simple_config.py

@ -284,7 +284,7 @@ class SimpleConfig(PrintError):
depth = 0 depth = 0
for fee, s in self.mempool_fees: for fee, s in self.mempool_fees:
depth += s depth += s
if fee < target_fee: if fee <= target_fee:
break break
else: else:
return 0 return 0

Loading…
Cancel
Save