Skip to content

Commit

Permalink
Remove redundent prop
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Jan 7, 2024
1 parent 1e46001 commit 48a01ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async function getEstimates() : Promise<Estimates> {
const results = await fetchData();
console.debug('Fetch tasks completed', results);

const { blocksTipHash, mempoolFeeEstimates, esploraFeeEstimates: esploraFeeEstimates } = assignResults(results);
const { blocksTipHash, mempoolFeeEstimates, esploraFeeEstimates } = assignResults(results);
const feeByBlockTarget = calculateFees(mempoolFeeEstimates, esploraFeeEstimates);

estimates = {
Expand Down

0 comments on commit 48a01ec

Please sign in to comment.