Skip to content

Commit f002cfd

Browse files
committed
fix: enable the router
1 parent 10a7129 commit f002cfd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/rpc/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ where
9191
Host: FullNodeComponents,
9292
Signet: Pnt,
9393
{
94-
ajj::Router::new().nest("eth", eth::<Host, Signet>()).nest("signet", signet::<Host, Signet>())
94+
ajj::Router::new()
95+
.nest("eth", eth::<Host, Signet>())
96+
.nest("signet", signet::<Host, Signet>())
97+
.nest("debug", debug::<Host, Signet>())
9598
}
9699

97100
/// Create a new hazmat router that exposes the `inspect` API.

0 commit comments

Comments
 (0)