Skip to content

Commit 4487a11

Browse files
committed
Merge #984: Manual weekly update to rustc (to nightly-2026-06-14)
0c1e14a Fix lint by removing unnecessary format call (satsfy (Renato Britto)) 4cc45ea Manual update to Github CI to rustc nightly-2026-06-14 (Update Nightly Rustc Bot) Pull request description: Supersedes #971 Fix lint by removing unnecessary format call. ACKs for top commit: apoelstra: ACK 0c1e14a; successfully ran local tests Tree-SHA512: 9a0a550b761623dd099e60f5e2c992e65c59bb08ffcc2ee173d97eebca2d0ac0b73dcf0fc94025520b272a42ef9f9ff6789acd681c2f6abd9996219daae863d4
2 parents a29d089 + 0c1e14a commit 4487a11

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ members = ["fuzz"]
143143
exclude = ["embedded", "bitcoind-tests"]
144144

145145
[workspace.metadata.rbmt.toolchains]
146-
nightly = "nightly-2026-05-22"
146+
nightly = "nightly-2026-06-14"
147147
stable = "1.95.0"
148148

149149
[workspace.lints.clippy]

src/descriptor/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ mod tests {
16711671
#[test]
16721672
fn tr_roundtrip_key() {
16731673
let script = Tr::<String>::from_str("tr()").unwrap().to_string();
1674-
assert_eq!(script, format!("tr()#x4ml3kxd"))
1674+
assert_eq!(script, "tr()#x4ml3kxd");
16751675
}
16761676

16771677
#[test]

0 commit comments

Comments
 (0)