File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ readme = "README.md"
1515rust-version = " 1.63.0"
1616
1717[dependencies ]
18- bitcoin = { git = " https://github.com/rust-bitcoin/rust-bitcoin.git" , rev = " eb59238769471bef7ba79a418bc124f05660e571 " }
18+ bitcoin = { git = " https://github.com/rust-bitcoin/rust-bitcoin.git" , rev = " 3203faecd72d301babcaa08bfeb10c151007fc71 " }
1919rand = {version = " 0.8.5" , default-features = false , optional = true }
2020
2121[dev-dependencies ]
22- bitcoin = { git = " https://github.com/rust-bitcoin/rust-bitcoin.git" , rev = " eb59238769471bef7ba79a418bc124f05660e571 " , features = [" arbitrary" ] }
22+ bitcoin = { git = " https://github.com/rust-bitcoin/rust-bitcoin.git" , rev = " 3203faecd72d301babcaa08bfeb10c151007fc71 " , features = [" arbitrary" ] }
2323criterion = " 0.3"
2424bitcoin-coin-selection = {path = " ." , features = [" rand" ]}
2525rand = " 0.8.5"
@@ -32,4 +32,4 @@ name = "coin_selection"
3232harness = false
3333
3434[patch .crates-io ]
35- bitcoin-units = { git = " https://github.com/rust-bitcoin/rust-bitcoin.git" , rev = " eb59238769471bef7ba79a418bc124f05660e571 " }
35+ bitcoin-units = { git = " https://github.com/rust-bitcoin/rust-bitcoin.git" , rev = " 3203faecd72d301babcaa08bfeb10c151007fc71 " }
Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ mod tests {
406406 let weight = weight + Weight :: from_wu ( TX_IN_BASE_WEIGHT ) ;
407407
408408 let mut result = None ;
409- if let Some ( fee_rate) = amount. checked_div_by_weight_floor ( weight) {
409+ if let Some ( fee_rate) = amount. checked_div_by_weight ( weight) {
410410 if fee_rate > FeeRate :: ZERO {
411411 result = Some ( fee_rate)
412412 }
You can’t perform that action at this time.
0 commit comments