We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19941e9 commit 6b66ad2Copy full SHA for 6b66ad2
node/src/lib.rs
@@ -1,5 +1,9 @@
1
extern crate core;
2
3
+// needed for testutil
4
+pub extern crate jsonrpsee;
5
+pub extern crate log;
6
+
7
pub mod config;
8
pub mod node;
9
pub mod rpc;
node/src/rpc.rs
@@ -52,7 +52,7 @@ pub(crate) type Responder<T> = oneshot::Sender<T>;
52
#[derive(Debug, Clone, Serialize, Deserialize)]
53
pub struct ServerInfo {
54
pub chain: ExtendedNetwork,
55
- tip: ChainAnchor,
+ pub tip: ChainAnchor,
56
}
57
58
pub enum ChainStateCommand {
0 commit comments