Skip to content

Commit

Permalink
Remove unused types.
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuDutSik committed Feb 21, 2025
1 parent 4ee42ae commit 237b077
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions linera-core/src/chain_worker/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ use linera_chain::{
ChainStateView,
};
use linera_execution::{
committee::{Epoch, ValidatorName},
Query, QueryContext, QueryOutcome, ServiceRuntimeEndpoint, ServiceSyncRuntime,
UserApplicationDescription,
committee::Epoch, Query, QueryContext, QueryOutcome, ServiceRuntimeEndpoint,
ServiceSyncRuntime, UserApplicationDescription,
};
use linera_storage::Storage;
use tokio::sync::{mpsc, oneshot, OwnedRwLockReadGuard};
Expand Down
5 changes: 2 additions & 3 deletions linera-core/src/chain_worker/state/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ use linera_chain::{
ChainError, ChainStateView,
};
use linera_execution::{
committee::{Epoch, ValidatorName},
Message, Query, QueryContext, QueryOutcome, ServiceRuntimeEndpoint, SystemMessage,
UserApplicationDescription,
committee::Epoch, Message, Query, QueryContext, QueryOutcome, ServiceRuntimeEndpoint,
SystemMessage, UserApplicationDescription,
};
use linera_storage::{Clock as _, Storage};
use linera_views::views::{ClonableView, ViewError};
Expand Down
4 changes: 3 additions & 1 deletion linera-core/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ use linera_chain::{
},
ChainError, ChainStateView,
};
use linera_execution::{committee::Epoch, ExecutionError, Query, QueryOutcome, UserApplicationDescription};
use linera_execution::{
committee::Epoch, ExecutionError, Query, QueryOutcome, UserApplicationDescription,
};
use linera_storage::Storage;
use linera_views::views::ViewError;
use lru::LruCache;
Expand Down
1 change: 0 additions & 1 deletion linera-service/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ use linera_client::{
storage::{full_initialize_storage, run_with_storage, Runnable, StorageConfigNamespace},
};
use linera_core::{worker::WorkerState, JoinSetExt as _};
use linera_execution::committee::ValidatorName;
use linera_rpc::{
config::{
CrossChainConfig, NetworkProtocol, NotificationConfig, ShardConfig, ShardId, TlsConfig,
Expand Down

0 comments on commit 237b077

Please sign in to comment.