tests: fix a few misuses of Decimal
Summary:
- 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
Test Plan: ninja check-functional
Reviewers: #bitcoin_abc, Fabien
Reviewed By: #bitcoin_abc, Fabien
Subscribers: Fabien
Differential Revision: https://reviews.bitcoinabc.org/D10613