Skip to content

Commit

Permalink
perf(@fireblocks/recovery-relay): ⚡ improve BTC fee estimation
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerHFB authored and a0ngo committed Dec 16, 2024
1 parent dbaf168 commit 3880c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/recovery-relay/lib/wallets/BTCBased/BTC.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class Bitcoin extends BaseBTC implements ConnectedWallet {

async getFeeRate(): Promise<number> {
const feeEstimate = await this.btcWalletUtils.requestJson.bind(this)<{ [key: string]: number }>('/fee-estimates');
const feeRate = feeEstimate['3'];
const feeRate = feeEstimate['1'];
return feeRate;
}

Expand Down

0 comments on commit 3880c5e

Please sign in to comment.