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

Delete object mappings and WS server from farmer #1722

Merged
merged 1 commit into from
Aug 1, 2023
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
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions crates/subspace-farmer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ event-listener-primitives = "2.0.1"
fdlimit = "0.2"
futures = "0.3.28"
hex = { version = "0.4.3", features = ["serde"] }
jsonrpsee = { version = "0.16.2", features = ["client", "macros", "server"] }
jsonrpsee = { version = "0.16.2", features = ["client"] }
lru = "0.10.0"
memmap2 = "0.7.0"
num-traits = "0.2.15"
parity-db = "0.4.6"
parity-scale-codec = "3.6.3"
parking_lot = "0.12.1"
Expand Down
3 changes: 0 additions & 3 deletions crates/subspace-farmer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,11 @@

pub(crate) mod identity;
pub mod node_client;
pub(crate) mod object_mappings;
pub mod reward_signing;
pub mod single_disk_plot;
pub mod utils;
pub mod ws_rpc_server;

pub use identity::Identity;
pub use jsonrpsee;
pub use node_client::node_rpc_client::NodeRpcClient;
pub use node_client::{Error as RpcClientError, NodeClient};
pub use object_mappings::{ObjectMappingError, ObjectMappings};
307 changes: 0 additions & 307 deletions crates/subspace-farmer/src/object_mappings.rs

This file was deleted.

Loading