Skip to content

Commit

Permalink
fix(wallet-api): align LLM prepareSignTransaction with LLD implementa…
Browse files Browse the repository at this point in the history
…tion [LIVE-12087]
  • Loading branch information
Justkant committed May 7, 2024
1 parent c7b0ae2 commit dc0a025
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/proud-moles-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": patch
---

fix(wallet-api): align LLM prepareSignTransaction with LLD implementation
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,5 @@ export default function prepareSignTransaction(
subAccountId: isTokenAccount(account) ? account.id : undefined,
});

return bridge.updateTransaction(t2, {
customGasLimit: txData.gasLimit,
type: 1,
maxFeePerGas: undefined,
maxPriorityFeePerGas: undefined,
...txData,
});
return bridge.updateTransaction(t2, txData);
}

0 comments on commit dc0a025

Please sign in to comment.