mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 08:21:27 +00:00
fee calculation: force back-end to use integer sat/bytes
This commit is contained in:
parent
95c5815fe3
commit
d8dad74267
1 changed files with 6 additions and 1 deletions
|
@ -428,7 +428,12 @@ class SimpleConfig(PrintError):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def estimate_fee_for_feerate(cls, fee_per_kb, size):
|
def estimate_fee_for_feerate(cls, fee_per_kb, size):
|
||||||
return int(fee_per_kb * size / 1000.)
|
# note: We only allow integer sat/byte values atm.
|
||||||
|
# The GUI for simplicity reasons only displays integer sat/byte,
|
||||||
|
# and for the sake of consistency, we thus only use integer sat/byte in
|
||||||
|
# the backend too.
|
||||||
|
fee_per_byte = int(fee_per_kb / 1000)
|
||||||
|
return int(fee_per_byte * size)
|
||||||
|
|
||||||
def update_fee_estimates(self, key, value):
|
def update_fee_estimates(self, key, value):
|
||||||
self.fee_estimates[key] = value
|
self.fee_estimates[key] = value
|
||||||
|
|
Loading…
Add table
Reference in a new issue