- In abc_rpc_avalancheproof.py, dust_amount was unneccesarily converted from a string to string via a Decimal. Use the string directly.
- In rpc_fundrawtransaction.py, use quote around the float value, to avoid loss of precision caused by intermediate float storage.
- In wallet_send.py, the tx size is an integer. Just use an integer division instead of creating an intermediate float and a Decimal.
Changes related to D10599