Skip to content

Commit

Permalink
Update feerate.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan authored Feb 27, 2024
1 parent c84f73c commit bb186ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/policy/feerate.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class CFeeRate
/**
* Return the fee in satoshis for a size of 1000 bytes
*/
CAmount GetFeePerK() const { return GetFee(1000000); }
CAmount GetFeePerK() const { return GetFee(100000); }
friend bool operator<(const CFeeRate& a, const CFeeRate& b) { return a.nSatoshisPerK < b.nSatoshisPerK; }
friend bool operator>(const CFeeRate& a, const CFeeRate& b) { return a.nSatoshisPerK > b.nSatoshisPerK; }
friend bool operator==(const CFeeRate& a, const CFeeRate& b) { return a.nSatoshisPerK == b.nSatoshisPerK; }
Expand Down

0 comments on commit bb186ef

Please sign in to comment.