mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
fix: fee_to_depth
This commit is contained in:
parent
146f2dd568
commit
81bd8d8d67
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue