tMerge pull request #3879 from SomberNight/fee_calc_integer_satbyte - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 94ebfd578d5ab587c01976ab2af9cd068e614542 DIR parent cccf3807538639fb638424b06faf0563e7b7d80e HTML Author: ThomasV <thomasv@electrum.org> Date: Fri, 9 Feb 2018 12:13:49 +0100 Merge pull request #3879 from SomberNight/fee_calc_integer_satbyte fee calculation: force back-end to use integer sat/bytes Diffstat: M lib/simple_config.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- DIR diff --git a/lib/simple_config.py b/lib/simple_config.py t@@ -428,7 +428,12 @@ class SimpleConfig(PrintError): @classmethod 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): self.fee_estimates[key] = value