Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dangershony committed May 1, 2024
1 parent c2e047e commit d6a73b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Blockcore.Indexer.Core/Handlers/StatsHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public async Task<FeeEstimations> GetFeeEstimation(params int[] confirmations)
throw;
}

var feeEstimation = new FeeEstimation() { Confirmations = confirmation, FeeRateet = estimateSmartFee.FeeRate.FeePerK.Satoshi, };
var feeEstimation = new FeeEstimation() { Confirmations = confirmation, FeeRate = estimateSmartFee.FeeRate.FeePerK.Satoshi, };

feeEstimations.Fees.Add(feeEstimation);

Expand Down
2 changes: 1 addition & 1 deletion src/Blockcore.Indexer.Core/Models/Statistics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class ConsensusInfo {
public class FeeEstimation
{
public int Confirmations { get; set; }
public long FeeRateet { get; set; }
public long FeeRate { get; set; }
}

public class FeeEstimations
Expand Down

0 comments on commit d6a73b9

Please sign in to comment.