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
e2636f3 Clippy lints MSRV 1.56.1 (Jose Storopoli)
Pull request description:
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)
ACKs for top commit:
apoelstra:
ACK e2636f3
Tree-SHA512: d1f38d1e2a1415da816898806377c90986072fe0bc9a9dbc3e5476026c05c53743453cbd0a237a70aa27762f1be86e44c19422575b7e62f686140accc412177c
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