(amount)
| 250 | |
| 251 | |
| 252 | def satoshi_round(amount): |
| 253 | return Decimal(amount).quantize(Decimal('0.00000001'), rounding=ROUND_DOWN) |
| 254 | |
| 255 | |
| 256 | def wait_until_helper(predicate, *, attempts=float('inf'), timeout=float('inf'), lock=None, timeout_factor=1.0): |
no outgoing calls
no test coverage detected