decimal is preferred in accounting applications
https://docs.python.org/3.8/library/decimal.html
Decimal type saves an exact value so better than using float.
3 variables declared with type as 'Decimal' in test/functional/mempool_accept.py: fee, fee_expected, output_amount
Not required to convert to string anymore for using the above variables as decimal
- fee, fee_expected, output_amount
+ 8 decimal places - Using value of coin['amount'] as decimal and removed 'int'
- Removed unnecessary parentheses
- Remove str() and use quotes
