Skip to content

Commit b0981fc

Browse files
committed
Merge rust-bitcoin#4575: Fix typo
7b52b9c Fix typo (yancy) Pull request description: Seems the comment has a stutter ACKs for top commit: tcharding: ACK 7b52b9c apoelstra: ACK 7b52b9c; successfully ran local tests Tree-SHA512: 1cb11c03bb3043c19936dbe4c2ccfa1e8fa43e90c118c969da536d010d95762966cc86e257e3365d18d96cc6dfe4a63d94c4d16b1b766dde3882286ce9bb4925
2 parents b8c3566 + 7b52b9c commit b0981fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

units/src/fee_rate/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl FeeRate {
6262
pub fn from_sat_per_vb(sat_vb: u64) -> Option<Self> {
6363
// 1 vb == 4 wu
6464
// 1 sat/vb == 1/4 sat/wu
65-
// sat_vb sat/vb * 1000 / 4 == sat/kwu
65+
// sat/vb * 1000 / 4 == sat/kwu
6666
Some(FeeRate::from_sat_per_kwu(sat_vb.checked_mul(1000 / 4)?))
6767
}
6868

0 commit comments

Comments
 (0)