We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb1f17 commit 7cae066Copy full SHA for 7cae066
crates/service/src/service/indexer_service.rs
@@ -409,7 +409,6 @@ impl IndexerService {
409
"/network",
410
post(static_subgraph_request_handler)
411
.route_layer(Extension(network_subgraph))
412
- .route_layer(Extension(options.config.service.serve_auth_token.clone()))
413
.route_layer(static_subgraph_rate_limiter.clone()),
414
);
415
}
@@ -420,7 +419,6 @@ impl IndexerService {
420
419
misc_routes = misc_routes
421
.route("/escrow", post(static_subgraph_request_handler))
422
.route_layer(Extension(escrow_subgraph))
423
424
.route_layer(static_subgraph_rate_limiter);
425
426
0 commit comments