Skip to content

Commit

Permalink
Remove console log from qi wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
rileystephens28 committed Oct 13, 2024
1 parent fa51740 commit ffdd4d3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/wallet/qi-hdwallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,6 @@ export class QiHDWallet extends AbstractHDWallet {

// 5.6 Calculate total fee for the transaction using the gasLimit, gasPrice, maxFeePerGas and maxPriorityFeePerGas
const totalFee = gasLimit * (feeData.gasPrice ?? 1n) + gasLimit * (feeData.minerTip ?? 0n);
console.log('Total fee:', totalFee);

// Get new selection with fee
selection = fewestCoinSelector.performSelection(spendTarget, totalFee);
Expand Down

0 comments on commit ffdd4d3

Please sign in to comment.