Fix clippy warnings on 1.53

Fix `clippy::inconsistent_struct_constructor`: the constructor field
order was inconsistent with the struct declaration.
This commit is contained in:
Alekos Filini
2021-06-21 11:54:56 +02:00
parent 67714adc80
commit 5e6286a493
2 changed files with 4 additions and 4 deletions

View File

@@ -227,12 +227,12 @@ impl Peer {
Ok(Peer {
writer,
reader_thread,
responses,
reader_thread,
connected,
mempool,
network,
version,
network,
})
}