diff --git a/ledger/src/proofs/circuit_blobs.rs b/ledger/src/proofs/circuit_blobs.rs index 7707008c0..3666d0057 100644 --- a/ledger/src/proofs/circuit_blobs.rs +++ b/ledger/src/proofs/circuit_blobs.rs @@ -191,7 +191,6 @@ pub async fn fetch(filename: &impl AsRef) -> std::io::Result> { option_env!("CIRCUIT_BLOBS_HTTP_PREFIX").unwrap_or("/assets/webnode/circuit-blobs"); let url = format!("{prefix}/{}", filename.as_ref().to_str().unwrap()); mina_core::http::get_bytes(&url).await - // http::get_bytes(&git_release_url(filename)).await } #[cfg(target_family = "wasm")] diff --git a/website/docs/node-operators/block-producer.md b/website/docs/node-operators/block-producer.md index 72f00a79d..0c32fcebf 100644 --- a/website/docs/node-operators/block-producer.md +++ b/website/docs/node-operators/block-producer.md @@ -145,20 +145,6 @@ Ensure Docker and Docker Compose are installed on your system - Visit [http://localhost:8070](http://localhost:8070) to monitor sync and block production. - - - :::note Frontend Status - - The dashboard is currently being updated and may not work correctly in - v0.17.0. As an alternative, monitor your node using logs: - - ```bash - docker compose logs -f - ``` - - ::: - - ## Using Make Command As an alternative to Docker Compose, you can run the block producer directly diff --git a/website/docs/node-operators/docker-usage.md b/website/docs/node-operators/docker-usage.md index fa053a1f9..20b81f4bc 100644 --- a/website/docs/node-operators/docker-usage.md +++ b/website/docs/node-operators/docker-usage.md @@ -91,18 +91,6 @@ You can find available tags at: - [o1labs/mina-rust on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust/tags) - [o1labs/mina-rust-frontend on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust-frontend/tags) - - -:::note Frontend Dashboard - -The frontend dashboard is currently being updated and will be fully functional -in a future release. The Docker image is available but may not work as expected -in v0.17.0. - -::: - - - ## Architecture Support All Docker images are built natively for multiple architectures to ensure @@ -149,7 +137,7 @@ docker run -p 8302:8302 o1labs/mina-rust:latest # Run node and web dashboard together docker run -d --name mina-rust-node -p 8302:8302 o1labs/mina-rust:latest \ node --network devnet -# Frontend (currently being fixed, may not work as expected) +# Frontend docker run -d --name mina-frontend -p 8070:8070 o1labs/mina-rust-frontend:latest ``` @@ -158,18 +146,6 @@ docker run -d --name mina-frontend -p 8070:8070 o1labs/mina-rust-frontend:latest Docker Compose provides the easiest way to run both the Mina node and frontend dashboard together. - - -:::caution Frontend Status - -The frontend dashboard is included in the docker-compose setup but is currently -being updated. It may not function correctly in v0.17.0 and will be fully -operational in a future release. - -::: - - - #### Quick Start with Release Version For each release, you can directly download the docker-compose.yml file: @@ -242,8 +218,7 @@ MINA_LIBP2P_PORT=9302 MINA_LIBP2P_EXTERNAL_IP=203.0.113.1 docker compose up -d #### What's Included - **mina-rust-node**: The core Mina Rust node running on devnet -- **frontend**: Web dashboard accessible at http://localhost:8070 (currently - being fixed) +- **frontend**: Web dashboard accessible at http://localhost:8070 - **Persistent storage**: Node data stored in `./mina-workdir` directory - **Automatic networking**: Services can communicate with each other