Remove repeated fee_rate test

One of the tests is a copy of the test two above it with a similar name.

Remove the copy of the test.
This commit is contained in:
Jamil Lambert, PhD 2025-06-19 20:35:32 +01:00
parent bd50943234
commit 5edcc5dad4
No known key found for this signature in database
GPG Key ID: 54DC29234AB5D2C0
1 changed files with 0 additions and 6 deletions

View File

@ -383,12 +383,6 @@ mod tests {
assert_eq!(fee_rate, FeeRate::from_sat_per_mvb(11_000)); assert_eq!(fee_rate, FeeRate::from_sat_per_mvb(11_000));
} }
#[test]
fn from_sat_per_vb() {
let fee_rate = FeeRate::from_sat_per_vb(10);
assert_eq!(fee_rate, FeeRate::from_sat_per_kwu(2500));
}
#[test] #[test]
fn raw_feerate() { fn raw_feerate() {
let fee_rate = FeeRate::from_sat_per_kwu(749); let fee_rate = FeeRate::from_sat_per_kwu(749);