Skip to content

Commit

Permalink
Fix Ledger gas configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
moisses89 committed Mar 18, 2024
1 parent 3875a1b commit 22bb772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion safe_cli/operators/hw_wallets/ledger_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def get_signed_raw_transaction(
nonce=tx_parameters["nonce"],
data=tx_parameters.get("data"),
max_priority_fee_per_gas=tx_parameters.get("maxPriorityFeePerGas"),
max_fee_per_gas=tx_parameters.get("maxPriorityFeePerGas"),
max_fee_per_gas=tx_parameters.get("maxFeePerGas"),
chain_id=chain_id,
sender_path=self.derivation_path,
dongle=self.dongle,
Expand Down

0 comments on commit 22bb772

Please sign in to comment.