[ci] Fix clippy warnings for 1.47.0

This commit is contained in:
Steve Myers 2020-10-08 16:55:49 -07:00
parent 98803b2573
commit 070d481849
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051
2 changed files with 6 additions and 8 deletions

View File

@ -140,13 +140,11 @@ pub enum SatisfiableItem {
impl SatisfiableItem {
pub fn is_leaf(&self) -> bool {
match self {
SatisfiableItem::Thresh {
items: _,
threshold: _,
} => false,
_ => true,
}
!matches!(self,
SatisfiableItem::Thresh {
items: _,
threshold: _,
})
}
pub fn id(&self) -> String {

View File

@ -133,7 +133,7 @@ impl WalletExport {
.into_iter()
.map(|tx| tx.height.unwrap_or(0))
.collect::<Vec<_>>();
heights.sort();
heights.sort_unstable();
*heights.last().unwrap_or(&0)
}