Skip to content

Commit

Permalink
fix: estimate fee (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
witter-deland authored Jan 2, 2025
1 parent 6489e35 commit 5aefd74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/coin-kaspa/src/chain-wallet/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export class KaspaChainWallet extends BaseChainWallet {
: isReveal
? sendParam.commitTxPriorityFee
: sendParam.revealPriorityFee;
if (priorityFee) {
if (priorityFee?.amount) {
return {
priorityFee,
result: txResult
Expand Down

0 comments on commit 5aefd74

Please sign in to comment.