diff --git a/swagger.yml b/swagger.yml index 94f80ac..334cd0c 100644 --- a/swagger.yml +++ b/swagger.yml @@ -43,7 +43,7 @@ paths: application/json: schema: $ref: '#/components/schemas/LatestHeightResponse' - /notes-map: + /notes-index: get: parameters: - in: query diff --git a/webserver/src/app.rs b/webserver/src/app.rs index 9859144..59e5c6e 100644 --- a/webserver/src/app.rs +++ b/webserver/src/app.rs @@ -48,7 +48,10 @@ impl ApplicationServer { "/witness-map", get(handler::witness_map::get_witness_map), ) - .route("/notes-map", get(handler::notes_index::get_notes_index)) + .route( + "/notes-index", + get(handler::notes_index::get_notes_index), + ) .route("/tx", get(handler::tx::get_tx)) .route("/height", get(handler::namada_state::get_latest_height)) .route(