Skip to content

Commit c296669

Browse files
committed
Merge #363: Manual update to rustc (to nightly-2025-09-12)
81c85f8 Update Github CI to rustc nightly-2025-09-12 (Jamil Lambert, PhD) Pull request description: The nightly version used in CI and when running `just fmt` is still on `nightly-2025-04-04`. - Fix the one lint error in the new nightly. - Update to `nightly-2025-09-12` ACKs for top commit: tcharding: ACK 81c85f8 Tree-SHA512: 646887670bdd262cb9cfd8d6b485d9ddaa6d61a051fd5fe4b82859497ef18052faf7c598f67373bea310b334915d4009fa6df01b159ea57457111e90cbc75d5b
2 parents c2ec425 + 81c85f8 commit c296669

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

integration_test/tests/raw_transactions.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,10 @@ fn raw_transactions__test_mempool_accept__modelled() {
406406
let signed_tx = signed_model.tx;
407407

408408
// Call testmempoolaccept with the valid (not yet broadcast) transaction.
409-
let json: TestMempoolAccept =
410-
node.client.test_mempool_accept(&[signed_tx.clone()]).expect("testmempoolaccept");
409+
let json: TestMempoolAccept = node
410+
.client
411+
.test_mempool_accept(std::slice::from_ref(&signed_tx))
412+
.expect("testmempoolaccept");
411413
#[cfg(feature = "v20_and_below")]
412414
type TestMempoolAcceptError = hex::HexToArrayError;
413415
let model: Result<mtype::TestMempoolAccept, TestMempoolAcceptError> = json.into_model();

nightly-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2025-04-04
1+
nightly-2025-09-12

0 commit comments

Comments
 (0)