Skip to content

Commit

Permalink
use rpc-client feature in zebrad production code
Browse files Browse the repository at this point in the history
  • Loading branch information
oxarbitrage committed Jul 8, 2024
1 parent abe0af7 commit 8391ae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion zebra-node-services/src/rpc_client.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A client for calling Zebra's JSON-RPC methods.
//!
//! Only used in tests and tools.
//! Used in the rpc sync scanning functionality and in various tests and tools.
use std::net::SocketAddr;

Expand Down
4 changes: 1 addition & 3 deletions zebrad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ test_sync_past_mandatory_checkpoint_testnet = []
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38" }
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.38" }
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38" }
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38" }
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = ["rpc-client"] }
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.38" }
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38" }

Expand Down Expand Up @@ -286,8 +286,6 @@ zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38", features
zebra-scan = { path = "../zebra-scan", version = "0.1.0-alpha.7", features = ["proptest-impl"] }
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["proptest-impl"] }

zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = ["rpc-client"] }

zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38" }
zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.5" }

Expand Down

0 comments on commit 8391ae7

Please sign in to comment.