assert!(
matches!(&policy.item, Multisig { keys, threshold } if threshold == &2usize
- && &keys[0].fingerprint.unwrap() == &fingerprint0
- && &keys[1].fingerprint.unwrap() == &fingerprint1)
+ && keys[0].fingerprint.unwrap() == fingerprint0
+ && keys[1].fingerprint.unwrap() == fingerprint1)
);
// TODO should this be "Satisfaction::None" since we have no prv keys?
// TODO should items and conditions not be empty?
.unwrap();
assert!(
matches!(&policy.item, Multisig { keys, threshold } if threshold == &2usize
- && &keys[0].fingerprint.unwrap() == &fingerprint0
- && &keys[1].fingerprint.unwrap() == &fingerprint1)
+ && keys[0].fingerprint.unwrap() == fingerprint0
+ && keys[1].fingerprint.unwrap() == fingerprint1)
);
assert!(