From 3b6ff24396f8fd0dfbf336784348d1df537a0311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Anda=20Estensen?= Date: Tue, 26 Nov 2024 15:10:04 +0100 Subject: [PATCH] chore(docs): fix broken doc links --- bolt-boost/src/server.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bolt-boost/src/server.rs b/bolt-boost/src/server.rs index 0418073ce..52bcb4164 100644 --- a/bolt-boost/src/server.rs +++ b/bolt-boost/src/server.rs @@ -74,7 +74,7 @@ impl BuilderState { } /// An extended builder-API that implements the constraints-API as defined in -/// the spec: . +/// the spec: . /// /// The added endpoints are defined in [extra_routes](ConstraintsApi::extra_routes). pub struct ConstraintsApi; @@ -99,7 +99,7 @@ impl BuilderApi for ConstraintsApi { } /// Gets the extra routes for supporting the constraints API as defined in - /// the spec: . + /// the spec: . fn extra_routes() -> Option>> { let mut router = Router::new(); router = router.route(SUBMIT_CONSTRAINTS_PATH, post(submit_constraints)); @@ -111,7 +111,7 @@ impl BuilderApi for ConstraintsApi { } /// Submit signed constraints to the builder. -/// Spec: +/// Spec: #[tracing::instrument(skip_all)] async fn submit_constraints( State(state): State>, @@ -141,7 +141,7 @@ async fn submit_constraints( } /// Delegate constraint submission rights to another BLS key. -/// Spec: +/// Spec: #[tracing::instrument(skip_all)] async fn delegate( State(state): State>, @@ -153,7 +153,7 @@ async fn delegate( } /// Revoke constraint submission rights from a BLS key. -/// Spec: +/// Spec: #[tracing::instrument(skip_all)] async fn revoke( State(state): State>, @@ -165,7 +165,7 @@ async fn revoke( } /// Get a header with proofs for a given slot and parent hash. -/// Spec: +/// Spec: #[tracing::instrument(skip_all, fields(slot = params.slot))] async fn get_header_with_proofs( State(state): State>,