Browse Source

follow-up prev: fix bug in fee_to_depth, and typo and tests

3.2.x
SomberNight 6 years ago
parent
commit
8bb59fcc3c
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 4
      electrum/simple_config.py
  2. 5
      electrum/tests/test_simple_config.py

4
electrum/simple_config.py

@ -321,8 +321,6 @@ class SimpleConfig(PrintError):
depth += s
if fee <= target_fee:
break
else:
return 0
return depth
def depth_to_fee(self, slider_pos) -> int:
@ -333,7 +331,7 @@ class SimpleConfig(PrintError):
@impose_hard_limits_on_fee
def depth_target_to_fee(self, target: int) -> int:
"""Returns fee in sat/kbyte.
target: desired mempool depth in sat/vbyte
target: desired mempool depth in vbytes
"""
depth = 0
for fee, s in self.mempool_fees:

5
electrum/tests/test_simple_config.py

@ -111,7 +111,7 @@ class Test_SimpleConfig(SequentialTestCase):
self.assertEqual({"something": "a"}, result)
def test_depth_target_to_fee(self):
config = SimpleConfig({})
config = SimpleConfig(self.options)
config.mempool_fees = [[49, 100110], [10, 121301], [6, 153731], [5, 125872], [1, 36488810]]
self.assertEqual( 2 * 1000, config.depth_target_to_fee(1000000))
self.assertEqual( 6 * 1000, config.depth_target_to_fee( 500000))
@ -134,7 +134,7 @@ class Test_SimpleConfig(SequentialTestCase):
self.assertEqual( 1 * 1000, config.depth_target_to_fee(10 ** 8))
def test_fee_to_depth(self):
config = SimpleConfig({})
config = SimpleConfig(self.options)
config.mempool_fees = [[49, 100000], [10, 120000], [6, 150000], [5, 125000], [1, 36000000]]
self.assertEqual(100000, config.fee_to_depth(500))
self.assertEqual(100000, config.fee_to_depth(50))
@ -145,6 +145,7 @@ class Test_SimpleConfig(SequentialTestCase):
self.assertEqual(370000, config.fee_to_depth(6.5))
self.assertEqual(370000, config.fee_to_depth(6))
self.assertEqual(495000, config.fee_to_depth(5.5))
self.assertEqual(36495000, config.fee_to_depth(0.5))
class TestUserConfig(SequentialTestCase):

Loading…
Cancel
Save