mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
raise the maximum imposed on dynamic fees
This commit is contained in:
parent
edb145e66a
commit
d83058e2e8
1 changed files with 1 additions and 1 deletions
|
@ -911,7 +911,7 @@ class Abstract_Wallet(PrintError):
|
||||||
b = config.get('dynamic_fees')
|
b = config.get('dynamic_fees')
|
||||||
f = config.get('fee_factor', 50)
|
f = config.get('fee_factor', 50)
|
||||||
F = config.get('fee_per_kb', bitcoin.RECOMMENDED_FEE)
|
F = config.get('fee_per_kb', bitcoin.RECOMMENDED_FEE)
|
||||||
return min(bitcoin.RECOMMENDED_FEE, self.network.fee*(50 + f)/100) if b and self.network and self.network.fee else F
|
return min(10*bitcoin.RECOMMENDED_FEE, self.network.fee*(50 + f)/100) if b and self.network and self.network.fee else F
|
||||||
|
|
||||||
def relayfee(self):
|
def relayfee(self):
|
||||||
RELAY_FEE = 5000
|
RELAY_FEE = 5000
|
||||||
|
|
Loading…
Add table
Reference in a new issue