diff --git a/cli/src/routes.rs b/cli/src/routes.rs index 31aac8f..f519033 100644 --- a/cli/src/routes.rs +++ b/cli/src/routes.rs @@ -211,7 +211,7 @@ pub async fn get_raw( web::Query(query): web::Query, hash: web::Path, ) -> Result { - // check_auth(&req, &state)?; + check_auth(&req, &state)?; let address = Address::decode(&b58_decode(hash.into_inner()).map_err(ErrorInternalServerError)?)