diff options
author | Suhas Daftuar <sdaftuar@chaincode.com> | 2015-11-18 18:35:07 -0500 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-12-01 11:03:37 +0100 |
commit | 6e8b07f5f3117d1346e2e720c61ba3e8b08f7cd8 (patch) | |
tree | 97b2e8da9f8c270c9508a993b08fc92a6528d0de /qa/rpc-tests/smartfees.py | |
parent | 8f761e87c3fd0ad50d41925d8c2ac2c429403b44 (diff) |
Add rounding helper function to util.py
Diffstat (limited to 'qa/rpc-tests/smartfees.py')
-rwxr-xr-x | qa/rpc-tests/smartfees.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/qa/rpc-tests/smartfees.py b/qa/rpc-tests/smartfees.py index ecfffc1b45..b209ae0c16 100755 --- a/qa/rpc-tests/smartfees.py +++ b/qa/rpc-tests/smartfees.py @@ -19,9 +19,6 @@ P2SH_2 = "2NBdpwq8Aoo1EEKEXPNrKvr5xQr3M9UfcZA" # P2SH of "OP_2 OP_DROP" # 4 bytes of OP_TRUE and push 2-byte redeem script of "OP_1 OP_DROP" or "OP_2 OP_DROP" SCRIPT_SIG = ["0451025175", "0451025275"] -def satoshi_round(amount): - return Decimal(amount).quantize(Decimal('0.00000001'), rounding=ROUND_DOWN) - def small_txpuzzle_randfee(from_node, conflist, unconflist, amount, min_fee, fee_increment): ''' Create and send a transaction with a random fee. |