electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 81bd8d8d679a0a6ece4b35da818cf8ce958016dd
parent 146f2dd56839619dfac4f83080a1d03fbf445531
Author: ThomasV <thomasv@electrum.org>
Date:   Wed,  7 Feb 2018 17:30:08 +0100

fix: fee_to_depth

Diffstat:
Mlib/simple_config.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/simple_config.py b/lib/simple_config.py @@ -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