You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nothing out of the ordinary.
The most alarming was the non-inclusive range in
`test_utils.rs`.
In some test functions I allowed myself to use
`#[allow(clippy::type_complexity)]` because clippy
was asking to create a type instead of using the big
tuple. Since these were used just once, I thought it
was overkill.
Note, depends on:
- #639 (we can also merge this into it
instead of `master`)
- #638 (has some allows on dead_code)
let desc = "tr([73c5da0a/86'/0'/0']xpub6BgBgsespWvERF3LHQu6CnqdvfEvtMcQjYrcRzx53QJjSxarj2afYWcLteoGVky7D3UKDP9QyrLprQ3VCECoY49yfdDEHGCtMMj92pReUsQ/0/0)";
1593
-
let desc = Descriptor::<DefiniteDescriptorKey>::from_str(&desc).unwrap();
1593
+
let desc = Descriptor::<DefiniteDescriptorKey>::from_str(desc).unwrap();
1594
1594
1595
1595
letmut non_witness_utxo = bitcoin::Transaction{
1596
1596
version: transaction::Version::ONE,
@@ -1652,7 +1652,7 @@ mod tests {
1652
1652
#[test]
1653
1653
fntest_update_output_checks(){
1654
1654
let desc = "tr([73c5da0a/86'/0'/0']xpub6BgBgsespWvERF3LHQu6CnqdvfEvtMcQjYrcRzx53QJjSxarj2afYWcLteoGVky7D3UKDP9QyrLprQ3VCECoY49yfdDEHGCtMMj92pReUsQ/0/0)";
1655
-
let desc = Descriptor::<DefiniteDescriptorKey>::from_str(&desc).unwrap();
1655
+
let desc = Descriptor::<DefiniteDescriptorKey>::from_str(desc).unwrap();
0 commit comments