Skip to content

Commit

Permalink
rename to maxTotalFee
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-fireblocks committed Aug 25, 2024
1 parent d6a1835 commit e4cf8cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ def create_transaction(
fee_level=None,
fail_on_low_fee=None,
max_fee=None,
max_tx_fee=None,
max_total_fee=None,
gas_limit=None,
idempotency_key=None,
external_tx_id=None,
Expand Down Expand Up @@ -1544,8 +1544,8 @@ def create_transaction(
if max_fee:
body["maxFee"] = max_fee

if max_tx_fee:
body["maxTxFee"] = max_tx_fee
if max_total_fee:
body["maxTotalFee"] = max_total_fee

if fail_on_low_fee:
body["failOnLowFee"] = fail_on_low_fee
Expand Down

0 comments on commit e4cf8cb

Please sign in to comment.