From b1d6c90fbbf0ec0c4f2d06ac722f1fcb3d7a7503 Mon Sep 17 00:00:00 2001 From: Tilak Madichetti Date: Sat, 11 Oct 2025 16:20:31 +0530 Subject: [PATCH] fix(examples): change method to launch with debug capabilities (#18946) --- examples/custom-dev-node/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom-dev-node/src/main.rs b/examples/custom-dev-node/src/main.rs index f700cf9e89..c5441a2b38 100644 --- a/examples/custom-dev-node/src/main.rs +++ b/examples/custom-dev-node/src/main.rs @@ -33,7 +33,7 @@ async fn main() -> eyre::Result<()> { let NodeHandle { node, node_exit_future: _ } = NodeBuilder::new(node_config) .testing_node(tasks.executor()) .node(EthereumNode::default()) - .launch() + .launch_with_debug_capabilities() .await?; let mut notifications = node.provider.canonical_state_stream();