27 | @@ -28,7 +28,11 @@ def setup_network(self, split=False):
28 |
29 | def run_test(self):
30 | print "Mining blocks..."
31 | - feeTolerance = Decimal(0.00000002) #if the fee's positive delta is higher than this value tests will fail, neg. delta always fail the tests
32 | +
33 | + min_relay_tx_fee = self.nodes[0].getnetworkinfo()['relayfee']
34 | + # if the fee's positive delta is higher than this value tests will fail, neg. delta always fail the tests
Can you update this comment to explain why this is picked (signatures may or may not take an extra byte or two, but never be smaller)