Skip to content
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
1 change: 1 addition & 0 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions node/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ where
GrandpaJustifications::<C, Block>::new(client.clone()),
))?;

io.merge(kate_rpc::system::ApiServer::into_rpc(
kate_rpc::system::Rpc::<C, Block>::new(client),
io.merge(kate_rpc::custom::ApiServer::into_rpc(
kate_rpc::custom::Rpc::<C, Block>::new(client),
))?;

Ok(io)
Expand Down
1 change: 1 addition & 0 deletions rpc/kate-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ serde_json.workspace = true
serde.workspace = true
const-hex.workspace = true
tracing = { workspace = true }
lru = { workspace = true }

# 3rd party
jsonrpsee.workspace = true
Expand Down
Loading