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
No known key found for this signature in database
GPG Key ID: 431401E4A4530061
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,
})
}

View File

@ -277,7 +277,7 @@ where
self.descriptor
.as_derived(index, &self.secp)
.address(self.network)
.map(|address| AddressInfo { address, index })
.map(|address| AddressInfo { index, address })
.map_err(|_| Error::ScriptDoesntHaveAddressForm)
}
@ -289,7 +289,7 @@ where
self.descriptor
.as_derived(index, &self.secp)
.address(self.network)
.map(|address| AddressInfo { address, index })
.map(|address| AddressInfo { index, address })
.map_err(|_| Error::ScriptDoesntHaveAddressForm)
}