Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: delete unused empty structs #371

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Those changes in added, changed or breaking changes, should include usage exampl

### Removed 🗑

* Removed unused empty structs from the library in [#371](https://github.com/Layr-Labs/eigensdk-rs/pull/371)
* `eigen_client_eth::client::Client`
* `eigen_services_operatorsinfo::OperatorPubKeysService`

### Documentation 📚

### Other Changes
Expand Down
3 changes: 0 additions & 3 deletions crates/chainio/clients/elcontracts/src/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -898,9 +898,6 @@ impl ELChainWriter {
}
}

#[cfg(test)]
mod test_utils {}

#[cfg(test)]
mod tests {
use crate::test_utils::{
Expand Down
3 changes: 0 additions & 3 deletions crates/chainio/clients/eth/src/client.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#[derive(Debug)]
pub struct Client {}

use alloy::eips::BlockNumberOrTag;
use alloy::primitives::BlockNumber;
use alloy::rpc::types::eth::Block;
Expand Down
1 change: 0 additions & 1 deletion crates/services/operatorsinfo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@
pub mod fake_operator_info;
pub mod operator_info;
pub mod operatorsinfo_inmemory;
pub struct OperatorPubKeysService {}
Loading