Restore workspace-wide clippy

Fixes accumulated errors in the Substrate code. Modifies the runtime build to
work with a modern clippy. Removes e2e tests from the workspace.
This commit is contained in:
Luke Parker
2025-01-19 02:27:35 -05:00
parent 47560fa9a9
commit 0b30ac175e
22 changed files with 3329 additions and 295 deletions

View File

@@ -90,7 +90,8 @@ fn basic_functionality() {
},
b"Hello, World!".to_vec(),
)
.await;
.await
.unwrap();
// Queue this twice, which message-queue should de-duplicate
for _ in 0 .. 2 {
@@ -103,7 +104,8 @@ fn basic_functionality() {
},
b"Hello, World, again!".to_vec(),
)
.await;
.await
.unwrap();
}
// Successfully get it
@@ -146,7 +148,8 @@ fn basic_functionality() {
},
b"Hello, World!".to_vec(),
)
.await;
.await
.unwrap();
let monero = MessageQueue::new(
Service::Processor(NetworkId::Monero),