mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-10 13:09:24 +00:00
Add workspace lints
This commit is contained in:
@@ -198,12 +198,12 @@ impl<D: Db, N: Network> MultisigManager<D, N> {
|
||||
(
|
||||
MultisigManager {
|
||||
scanner,
|
||||
existing: current_keys.first().cloned().map(|(activation_block, key)| MultisigViewer {
|
||||
existing: current_keys.first().copied().map(|(activation_block, key)| MultisigViewer {
|
||||
activation_block,
|
||||
key,
|
||||
scheduler: schedulers.remove(0),
|
||||
}),
|
||||
new: current_keys.get(1).cloned().map(|(activation_block, key)| MultisigViewer {
|
||||
new: current_keys.get(1).copied().map(|(activation_block, key)| MultisigViewer {
|
||||
activation_block,
|
||||
key,
|
||||
scheduler: schedulers.remove(0),
|
||||
|
||||
Reference in New Issue
Block a user