-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't return 1.0 feerate if none is found by convert_fee_rate
#90
Don't return 1.0 feerate if none is found by convert_fee_rate
#90
Conversation
Pull Request Test Coverage Report for Build 9628513362Details
💛 - Coveralls |
2acce7e
to
ed219e2
Compare
Pull Request Test Coverage Report for Build 9635372336Details
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK ed219e2
I think you could add a simple test for it, but fine without it too.
rust-esplora-client/src/lib.rs
Lines 355 to 397 in ed219e2
#[test] | |
fn feerate_parsing() { | |
let esplora_fees = serde_json::from_str::<HashMap<u16, f64>>( | |
r#"{ | |
"25": 1.015, | |
"5": 2.3280000000000003, | |
"12": 2.0109999999999997, | |
"15": 1.018, | |
"17": 1.018, | |
"11": 2.0109999999999997, | |
"3": 3.01, | |
"2": 4.9830000000000005, | |
"6": 2.2359999999999998, | |
"21": 1.018, | |
"13": 1.081, | |
"7": 2.2359999999999998, | |
"8": 2.2359999999999998, | |
"16": 1.018, | |
"20": 1.018, | |
"22": 1.017, | |
"23": 1.017, | |
"504": 1, | |
"9": 2.2359999999999998, | |
"14": 1.018, | |
"10": 2.0109999999999997, | |
"24": 1.017, | |
"1008": 1, | |
"1": 4.9830000000000005, | |
"4": 2.3280000000000003, | |
"19": 1.018, | |
"144": 1, | |
"18": 1.018 | |
} | |
"#, | |
) | |
.unwrap(); | |
assert_eq!(convert_fee_rate(6, esplora_fees.clone()).unwrap(), 2.236); | |
assert_eq!( | |
convert_fee_rate(26, esplora_fees).unwrap(), | |
1.015, | |
"should inherit from value for 25" | |
); | |
} |
@ValuedMammal this looks good but could you add a simple test as above but also that hits this new |
I added to the existing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK ec5ee82
Oh sorry I didn't look closely enough at the change you made to that test, that covers it. |
Awesome, thanks! You covered the simple test I had in mind in ec5ee82 |
Pull Request Test Coverage Report for Build 10513190278Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
Change
convert_fee_rate
to returnOption<f32>
instead of Result.PR #65 made this function effectively infallible by removing the parse int error while falling back to a bogus 1.0 feerate if a value isn't found in fee estimates. We could make it return an error if for example the given fee estimates map is empty without changing the function signature but in that case we would need a new
Error
variant making it a breaking change anyway, therefore just change the function to returnOption
which should only beNone
if given a target of 0 or an empty map assuming esplora always has a fee estimate for a target of 1 confirmation.fixes #80