Remove redundant clone, clippy warning

https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
This commit is contained in:
Steve Myers 2021-04-08 11:41:58 -07:00
parent ac7df09200
commit b68ec050e2
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051

View File

@ -1429,7 +1429,7 @@ mod test {
)
);
let mut policy_clone = original_policy.clone();
let mut policy_clone = original_policy;
let psbt: PSBT = deserialize(&base64::decode(ALICE_BOB_SIGNED_PSBT).unwrap()).unwrap();
policy_clone
.fill_satisfactions(&psbt, &wallet_desc, &secp)