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

@@ -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)
}