tfix: fee_to_depth - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 81bd8d8d679a0a6ece4b35da818cf8ce958016dd
DIR parent 146f2dd56839619dfac4f83080a1d03fbf445531
HTML Author: ThomasV <thomasv@electrum.org>
Date: Wed, 7 Feb 2018 17:30:08 +0100
fix: fee_to_depth
Diffstat:
M lib/simple_config.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/simple_config.py b/lib/simple_config.py
t@@ -284,7 +284,7 @@ class SimpleConfig(PrintError):
depth = 0
for fee, s in self.mempool_fees:
depth += s
- if fee < target_fee:
+ if fee <= target_fee:
break
else:
return 0