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
4 changes: 0 additions & 4 deletions linera-core/src/unit_tests/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,6 @@ where
// * When using `LocalValidatorClient`, clients communicate with an exact quorum then stop.
// * Most tests have 1 faulty validator out 4 so that there is exactly only 1 quorum to
// communicate with.
#[allow(dead_code)]
pub struct TestBuilder<B: StorageBuilder> {
storage_builder: B,
pub initial_committee: Committee,
Expand Down Expand Up @@ -1201,7 +1200,6 @@ impl StorageBuilder for MemoryStorageBuilder {
impl MemoryStorageBuilder {
/// Creates a [`MemoryStorageBuilder`] that uses the specified [`WasmRuntime`] to run Wasm
/// applications.
#[allow(dead_code)]
pub fn with_wasm_runtime(wasm_runtime: impl Into<Option<WasmRuntime>>) -> Self {
MemoryStorageBuilder {
wasm_runtime: wasm_runtime.into(),
Expand Down Expand Up @@ -1326,7 +1324,6 @@ pub struct DynamoDbStorageBuilder {
impl DynamoDbStorageBuilder {
/// Creates a [`DynamoDbStorageBuilder`] that uses the specified [`WasmRuntime`] to run Wasm
/// applications.
#[allow(dead_code)]
pub fn with_wasm_runtime(wasm_runtime: impl Into<Option<WasmRuntime>>) -> Self {
DynamoDbStorageBuilder {
wasm_runtime: wasm_runtime.into(),
Expand Down Expand Up @@ -1371,7 +1368,6 @@ pub struct ScyllaDbStorageBuilder {
impl ScyllaDbStorageBuilder {
/// Creates a [`ScyllaDbStorageBuilder`] that uses the specified [`WasmRuntime`] to run Wasm
/// applications.
#[allow(dead_code)]
pub fn with_wasm_runtime(wasm_runtime: impl Into<Option<WasmRuntime>>) -> Self {
ScyllaDbStorageBuilder {
wasm_runtime: wasm_runtime.into(),
Expand Down
2 changes: 0 additions & 2 deletions linera-execution/src/test_utils/mock_application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

//! Mocking of user applications to help with execution scenario tests.

#![allow(dead_code)]

use std::{
collections::VecDeque,
fmt::{self, Debug, Display, Formatter},
Expand Down
Loading