Skip to content

Commit

Permalink
Fix sends (#1025)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Sinclair <[email protected]>
  • Loading branch information
brunobar79 and DanielSinclair authored Sep 29, 2023
1 parent 05ff5c1 commit 7eb1c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/keychain/RainbowSigner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class RainbowSigner extends Signer {
transaction.maxFeePerGas,
).toHexString();
}
if (txData.maxPriorityFeePerGas) {
if (transaction.maxPriorityFeePerGas) {
txData.maxPriorityFeePerGas = BigNumber.from(
transaction.maxPriorityFeePerGas,
).toHexString();
Expand Down

0 comments on commit 7eb1c6c

Please sign in to comment.