Use consistent field ordering
Clippy emits: warning: struct constructor field order is inconsistent with struct definition field order As suggested, re-order the fields to be consistent with the struct definition.
This commit is contained in:
parent
de811bea30
commit
de40351710
@ -255,8 +255,8 @@ impl OutputGroup {
|
|||||||
let effective_value = weighted_utxo.utxo.txout().value as i64 - fee.ceil() as i64;
|
let effective_value = weighted_utxo.utxo.txout().value as i64 - fee.ceil() as i64;
|
||||||
OutputGroup {
|
OutputGroup {
|
||||||
weighted_utxo,
|
weighted_utxo,
|
||||||
effective_value,
|
|
||||||
fee,
|
fee,
|
||||||
|
effective_value,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user