Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/pin-msrv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cargo update -p once_cell --precise "1.20.3"
cargo update -p base64ct --precise "1.6.0"
cargo update -p minreq --precise "2.13.2"
cargo update -p tracing-core --precise "0.1.33"
cargo update -p [email protected].2 --precise "1.0.1"
cargo update -p [email protected].3 --precise "1.0.1"
cargo update -p rayon --precise "1.10.0"
cargo update -p rayon-core --precise "1.12.1"
cargo update -p [email protected] --precise "0.5.10"
2 changes: 1 addition & 1 deletion crates/electrum/tests/test_electrum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ where
if let Some(chain_update) = update.chain_update.clone() {
let _ = chain
.apply_update(chain_update)
.map_err(|err| anyhow::anyhow!("LocalChain update error: {:?}", err))?;
.map_err(|err| anyhow::anyhow!("LocalChain update error: {err:?}"))?;
}
let _ = graph.apply_update(update.tx_update.clone());

Expand Down
6 changes: 3 additions & 3 deletions examples/example_cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ impl FromStr for CoinSelectionAlgo {
"oldest-first" => OldestFirst,
"newest-first" => NewestFirst,
"bnb" => BranchAndBound,
unknown => bail!("unknown coin selection algorithm '{}'", unknown),
unknown => bail!("unknown coin selection algorithm '{unknown}'"),
})
}
}
Expand Down Expand Up @@ -715,8 +715,8 @@ pub fn handle_commands<CS: clap::Subcommand, S: clap::Args>(
_ => unimplemented!("multi xkey signer"),
};

let _ = sign_res
.map_err(|errors| anyhow::anyhow!("failed to sign PSBT {:?}", errors))?;
let _ =
sign_res.map_err(|errors| anyhow::anyhow!("failed to sign PSBT {errors:?}"))?;

let mut obj = serde_json::Map::new();
obj.insert("psbt".to_string(), json!(psbt.to_string()));
Expand Down
Loading