XRPLF / xrpl-py

A Python library to interact with the XRP Ledger (XRPL) blockchain
ISC License
149 stars 86 forks source link

Allow users to pay high transaction fees without restriction #338

Closed wojake closed 2 years ago

wojake commented 2 years ago

https://github.com/XRPLF/xrpl-py/blob/feab4a0e3a69d4e3a2f355bbb3e67faa73690032/xrpl/asyncio/transaction/main.py#L275-L284

Why would we want to restrict the users from paying high transaction fees?

mvadari commented 2 years ago

This is to prevent people from accidentally passing in too high fees. You can turn this off by passing in check_fee=False to safe_sign_and_submit_transaction.

wojake commented 2 years ago

Ah I see, Thank you