mirror of
https://github.com/aljazceru/cdk.git
synced 2026-02-05 21:26:13 +01:00
chore: clippy
This commit is contained in:
@@ -76,12 +76,8 @@ impl<C: Client> Wallet<C> {
|
||||
.partition(|(_, &b)| b);
|
||||
|
||||
Ok(ProofsStatus {
|
||||
spendable: spendable
|
||||
.into_iter()
|
||||
.map(|(s, _)| s.into())
|
||||
.cloned()
|
||||
.collect(),
|
||||
spent: spent.into_iter().map(|(s, _)| s.into()).cloned().collect(),
|
||||
spendable: spendable.into_iter().map(|(s, _)| s).cloned().collect(),
|
||||
spent: spent.into_iter().map(|(s, _)| s).cloned().collect(),
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user