Skip to content

Commit

Permalink
add max tx fee param
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-fireblocks committed Aug 15, 2024
1 parent d826565 commit d6a1835
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -1474,6 +1474,7 @@ def create_transaction(
fee_level=None,
fail_on_low_fee=None,
max_fee=None,
max_tx_fee=None,
gas_limit=None,
idempotency_key=None,
external_tx_id=None,
Expand Down Expand Up @@ -1543,6 +1544,9 @@ def create_transaction(
if max_fee:
body["maxFee"] = max_fee

if max_tx_fee:
body["maxTxFee"] = max_tx_fee

if fail_on_low_fee:
body["failOnLowFee"] = fail_on_low_fee

Expand Down

0 comments on commit d6a1835

Please sign in to comment.