Use struct field init shorthand

Clippy emits:

  warning: redundant field names in struct initialization

As suggested use struct field init shorthand.
This commit is contained in:
Tobin C. Harding 2022-05-25 13:15:20 +10:00
parent 641960f037
commit fcd0f4deac
2 changed files with 7 additions and 7 deletions

View File

@ -621,7 +621,7 @@ impl Address {
network: Network
) -> Address {
Address {
network: network,
network,
payload: Payload::p2tr(secp, internal_key, merkle_root),
}
}

View File

@ -217,10 +217,10 @@ impl TaprootSpendInfo {
) -> Self {
let (output_key, parity) = internal_key.tap_tweak(secp, merkle_root);
Self {
internal_key: internal_key,
merkle_root: merkle_root,
internal_key,
merkle_root,
output_key_parity: parity,
output_key: output_key,
output_key,
script_map: BTreeMap::new(),
}
}
@ -544,7 +544,7 @@ impl NodeInfo {
/// Creates a new [`NodeInfo`] with omitted/hidden info.
pub fn new_hidden_node(hash: sha256::Hash) -> Self {
Self {
hash: hash,
hash,
leaves: vec![],
has_hidden_nodes: true
}
@ -596,8 +596,8 @@ impl ScriptLeaf {
/// Creates an new [`ScriptLeaf`] from `script` and `ver` and no merkle branch.
fn new(script: Script, ver: LeafVersion) -> Self {
Self {
script: script,
ver: ver,
script,
ver,
merkle_branch: TaprootMerkleBranch(vec![]),
}
}