Skip to content

Commit c94deab

Browse files
committed
Merge #627: Fix a bunch of clippy lints
7eccfdb clippy: whitelist iter_kv lint since it is broken (Andrew Poelstra) 6de288f cargo fmt (Andrew Poelstra) f9c4e53 clippy: fix PartialOrd impl on an Ord type (Andrew Poelstra) 1f8dfe2 clippy: clean up iterator (Andrew Poelstra) 5ab7afe clippy: whitelist inapplicable lints (Andrew Poelstra) 2237906 clippy: use try_fold in place of fold in several places (Andrew Poelstra) 4f7782f clippy: minor things (Andrew Poelstra) a61f71a clippy: eliminate a bunch of redundant `into_iter` calls (Andrew Poelstra) Pull request description: Supercedes #615. ACKs for top commit: tcharding: ACK 7eccfdb sanket1729: ACK 7eccfdb Tree-SHA512: ea4f14f754b07c9ae127684e6ca1d9f121361a7be617d45a19af0269af735d2f420f59abdf15b943052b34cc9afba31cddc87d75a86694f8eefa0d672d4b031b
2 parents 25fdc0d + 7eccfdb commit c94deab

File tree

9 files changed

+52
-69
lines changed

9 files changed

+52
-69
lines changed

clippy.toml

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
msrv = "1.48.0"
2+
# plan API returns Self as an error type for an large-ish enum
3+
large-error-threshold = 256

src/descriptor/checksum.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ impl Engine {
114114
let mut chars = [0 as char; CHECKSUM_LENGTH];
115115
let mut checksum_remaining = CHECKSUM_LENGTH;
116116

117-
for j in 0..CHECKSUM_LENGTH {
117+
for checksum_ch in &mut chars {
118118
checksum_remaining -= 1;
119119
let unpacked = self.inner.residue().unpack(checksum_remaining);
120120
let fe = Fe32::try_from(unpacked).expect("5 bits fits in an fe32");
121-
chars[j] = fe.to_char();
121+
*checksum_ch = fe.to_char();
122122
}
123123
chars
124124
}

src/descriptor/key.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ impl DescriptorPublicKey {
589589
};
590590
xpub.derivation_paths
591591
.paths()
592-
.into_iter()
592+
.iter()
593593
.map(|p| origin_path.extend(p))
594594
.collect()
595595
}
@@ -852,8 +852,7 @@ fn parse_xkey_deriv<K: InnerXKey>(
852852
// step all the vectors of indexes contain a single element. If it did though, one of the
853853
// vectors contains more than one element.
854854
// Now transform this list of vectors of steps into distinct derivation paths.
855-
.fold(Ok(Vec::new()), |paths, index_list| {
856-
let mut paths = paths?;
855+
.try_fold(Vec::new(), |mut paths, index_list| {
857856
let mut index_list = index_list?.into_iter();
858857
let first_index = index_list
859858
.next()
@@ -940,12 +939,9 @@ impl<K: InnerXKey> DescriptorXKey<K> {
940939
let (fingerprint, path) = keysource;
941940

942941
let (compare_fingerprint, compare_path) = match self.origin {
943-
Some((fingerprint, ref path)) => (
944-
fingerprint,
945-
path.into_iter()
946-
.chain(self.derivation_path.into_iter())
947-
.collect(),
948-
),
942+
Some((fingerprint, ref path)) => {
943+
(fingerprint, path.into_iter().chain(&self.derivation_path).collect())
944+
}
949945
None => (
950946
self.xkey.xkey_fingerprint(secp),
951947
self.derivation_path.into_iter().collect::<Vec<_>>(),

src/descriptor/tr.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,7 @@ impl<Pk: MiniscriptKey> PartialEq for Tr<Pk> {
9090
impl<Pk: MiniscriptKey> Eq for Tr<Pk> {}
9191

9292
impl<Pk: MiniscriptKey> PartialOrd for Tr<Pk> {
93-
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
94-
match self.internal_key.partial_cmp(&other.internal_key) {
95-
Some(cmp::Ordering::Equal) => {}
96-
ord => return ord,
97-
}
98-
self.tree.partial_cmp(&other.tree)
99-
}
93+
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> { Some(self.cmp(other)) }
10094
}
10195

10296
impl<Pk: MiniscriptKey> Ord for Tr<Pk> {
@@ -737,7 +731,7 @@ where
737731
wit.push(Placeholder::TapScript(leaf_script.0));
738732
wit.push(Placeholder::TapControlBlock(control_block));
739733

740-
let wit_size = witness_size(&wit);
734+
let wit_size = witness_size(wit);
741735
if min_wit_len.is_some() && Some(wit_size) > min_wit_len {
742736
continue;
743737
} else {

src/iter/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ impl<'a, Pk: MiniscriptKey> TreeLike for &'a policy::Concrete<Pk> {
8282
}
8383
}
8484

85-
impl<'a, Pk: MiniscriptKey> TreeLike for Arc<policy::Concrete<Pk>> {
85+
impl<Pk: MiniscriptKey> TreeLike for Arc<policy::Concrete<Pk>> {
8686
fn as_node(&self) -> Tree<Self> {
8787
use policy::Concrete::*;
8888
match self.as_ref() {

src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@
8585
#![deny(dead_code)]
8686
#![deny(unused_imports)]
8787
#![deny(missing_docs)]
88+
// Clippy lints that we have disabled
89+
#![allow(clippy::iter_kv_map)] // https://github.com/rust-lang/rust-clippy/issues/11752
8890

8991
#[cfg(target_pointer_width = "16")]
9092
compile_error!(
@@ -116,7 +118,6 @@ mod macros;
116118
mod pub_macros;
117119

118120
use internals::hex::exts::DisplayHex;
119-
pub use pub_macros::*;
120121

121122
pub mod descriptor;
122123
pub mod expression;
@@ -812,6 +813,7 @@ mod tests {
812813
}
813814
}
814815

816+
#[allow(unused_imports)] // this is an internal prelude module; not all imports are used with every feature combination
815817
mod prelude {
816818
// Mutex implementation from LDK
817819
// https://github.com/lightningdevkit/rust-lightning/blob/9bdce47f0e0516e37c89c09f1975dfc06b5870b1/lightning-invoice/src/sync.rs

src/miniscript/types/extra_props.rs

+19-25
Original file line numberDiff line numberDiff line change
@@ -792,11 +792,11 @@ impl Property for ExtData {
792792
.iter()
793793
.rev()
794794
.enumerate()
795-
.fold(Some(0), |acc, (i, &(x, y))| {
795+
.try_fold(0, |acc, (i, &(x, y))| {
796796
if i <= k {
797-
opt_add(acc, x)
797+
x.map(|x| acc + x)
798798
} else {
799-
opt_add(acc, y)
799+
y.map(|y| acc + y)
800800
}
801801
});
802802

@@ -805,11 +805,11 @@ impl Property for ExtData {
805805
.iter()
806806
.rev()
807807
.enumerate()
808-
.fold(Some(0), |acc, (i, &(x, y))| {
808+
.try_fold(0, |acc, (i, &(x, y))| {
809809
if i <= k {
810-
opt_max(acc, x)
810+
x.map(|x| acc + x)
811811
} else {
812-
opt_max(acc, y)
812+
y.map(|y| acc + y)
813813
}
814814
});
815815

@@ -819,26 +819,25 @@ impl Property for ExtData {
819819
max_sat_size_vec
820820
.iter()
821821
.enumerate()
822-
.fold(Some((0, 0)), |acc, (i, &(x, y))| {
822+
.try_fold((0, 0), |acc, (i, &(x, y))| {
823823
if i <= k {
824-
opt_tuple_add(acc, x)
824+
x.map(|(x0, x1)| (acc.0 + x0, acc.1 + x1))
825825
} else {
826-
opt_tuple_add(acc, y)
826+
y.map(|(y0, y1)| (acc.0 + y0, acc.1 + y1))
827827
}
828828
});
829829

830830
ops_count_sat_vec.sort_by(sat_minus_dissat);
831-
let op_count_sat =
832-
ops_count_sat_vec
833-
.iter()
834-
.enumerate()
835-
.fold(Some(0), |acc, (i, &(x, y))| {
836-
if i <= k {
837-
opt_add(acc, x)
838-
} else {
839-
opt_add(acc, Some(y))
840-
}
841-
});
831+
let op_count_sat = ops_count_sat_vec
832+
.iter()
833+
.enumerate()
834+
.try_fold(0, |acc, (i, &(x, y))| {
835+
if i <= k {
836+
x.map(|x| acc + x)
837+
} else {
838+
Some(acc + y)
839+
}
840+
});
842841

843842
Ok(ExtData {
844843
pk_cost: pk_cost + n - 1, //all pk cost + (n-1)*ADD
@@ -1049,11 +1048,6 @@ fn opt_max<T: Ord>(a: Option<T>, b: Option<T>) -> Option<T> {
10491048
/// Returns Some(x+y) is both x and y are Some. Otherwise, returns `None`.
10501049
fn opt_add(a: Option<usize>, b: Option<usize>) -> Option<usize> { a.and_then(|x| b.map(|y| x + y)) }
10511050

1052-
/// Returns Some((x0+y0, x1+y1)) is both x and y are Some. Otherwise, returns `None`.
1053-
fn opt_tuple_add(a: Option<(usize, usize)>, b: Option<(usize, usize)>) -> Option<(usize, usize)> {
1054-
a.and_then(|x| b.map(|(w, s)| (w + x.0, s + x.1)))
1055-
}
1056-
10571051
#[cfg(test)]
10581052
mod tests {
10591053
use super::*;

src/plan.rs

+17-22
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@ impl Plan {
255255
// scriptSig len (1) + OP_0 (1) + OP_PUSHBYTES_32 (1) + <script hash> (32)
256256
(_, DescriptorType::ShWsh) | (_, DescriptorType::ShWshSortedMulti) => 1 + 1 + 1 + 32,
257257
// Native Segwit v0 (scriptSig len (1))
258-
__ => 1,
258+
_ => 1,
259259
}
260260
}
261261

262262
/// The size in bytes of the witness that satisfies this plan
263263
pub fn witness_size(&self) -> usize {
264-
if let Some(_) = self.descriptor.desc_type().segwit_version() {
264+
if self.descriptor.desc_type().segwit_version().is_some() {
265265
witness_size(self.template.as_ref())
266266
} else {
267267
0 // should be 1 if there's at least one segwit input in the tx, but that's out of
@@ -383,7 +383,7 @@ impl Plan {
383383
.entry(pk)
384384
.and_modify(|(leaf_hashes, _)| {
385385
if let Some(lh) = leaf_hash {
386-
if leaf_hashes.iter().find(|&&i| i == lh).is_none() {
386+
if leaf_hashes.iter().all(|&i| i != lh) {
387387
leaf_hashes.push(lh);
388388
}
389389
}
@@ -397,17 +397,14 @@ impl Plan {
397397
}
398398
} else {
399399
for item in &self.template {
400-
match item {
401-
Placeholder::EcdsaSigPk(pk) => {
402-
let public_key = pk.to_public_key().inner;
403-
let master_fingerprint = pk.master_fingerprint();
404-
for derivation_path in pk.full_derivation_paths() {
405-
input
406-
.bip32_derivation
407-
.insert(public_key, (master_fingerprint, derivation_path));
408-
}
400+
if let Placeholder::EcdsaSigPk(pk) = item {
401+
let public_key = pk.to_public_key().inner;
402+
let master_fingerprint = pk.master_fingerprint();
403+
for derivation_path in pk.full_derivation_paths() {
404+
input
405+
.bip32_derivation
406+
.insert(public_key, (master_fingerprint, derivation_path));
409407
}
410-
_ => {}
411408
}
412409
}
413410

@@ -669,7 +666,7 @@ impl IntoAssets for DescriptorPublicKey {
669666
}
670667

671668
impl IntoAssets for Vec<DescriptorPublicKey> {
672-
fn into_assets(self) -> Assets { Assets::from_iter(self.into_iter()) }
669+
fn into_assets(self) -> Assets { Assets::from_iter(self) }
673670
}
674671

675672
impl IntoAssets for sha256::Hash {
@@ -705,6 +702,7 @@ impl Assets {
705702
pub fn new() -> Self { Self::default() }
706703

707704
/// Add some assets
705+
#[allow(clippy::should_implement_trait)] // looks like the `ops::Add` trait
708706
pub fn add<A: IntoAssets>(mut self, asset: A) -> Self {
709707
self.append(asset.into_assets());
710708
self
@@ -723,14 +721,11 @@ impl Assets {
723721
}
724722

725723
fn append(&mut self, b: Self) {
726-
self.keys.extend(b.keys.into_iter());
727-
self.sha256_preimages.extend(b.sha256_preimages.into_iter());
728-
self.hash256_preimages
729-
.extend(b.hash256_preimages.into_iter());
730-
self.ripemd160_preimages
731-
.extend(b.ripemd160_preimages.into_iter());
732-
self.hash160_preimages
733-
.extend(b.hash160_preimages.into_iter());
724+
self.keys.extend(b.keys);
725+
self.sha256_preimages.extend(b.sha256_preimages);
726+
self.hash256_preimages.extend(b.hash256_preimages);
727+
self.ripemd160_preimages.extend(b.ripemd160_preimages);
728+
self.hash160_preimages.extend(b.hash160_preimages);
734729

735730
self.relative_timelock = b.relative_timelock.or(self.relative_timelock);
736731
self.absolute_timelock = b.absolute_timelock.or(self.absolute_timelock);

src/psbt/finalizer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ pub(super) fn finalize_input<C: secp256k1::Verification>(
428428
// Now mutate the psbt input. Note that we cannot error after this point.
429429
// If the input is mutated, it means that the finalization succeeded.
430430
{
431-
let original = mem::replace(&mut psbt.inputs[index], Default::default());
431+
let original = mem::take(&mut psbt.inputs[index]);
432432
let input = &mut psbt.inputs[index];
433433
input.non_witness_utxo = original.non_witness_utxo;
434434
input.witness_utxo = original.witness_utxo;

0 commit comments

Comments
 (0)