From 6781fe182790ba3bc1f274c1ee9a10c3eb52047c Mon Sep 17 00:00:00 2001 From: David Klank <155117116+davidjsonn@users.noreply.github.com> Date: Thu, 5 Jun 2025 15:33:50 +0300 Subject: [PATCH 1/2] fix error README_Docker_and_RA.md --- docs/README_Docker_and_RA.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README_Docker_and_RA.md b/docs/README_Docker_and_RA.md index 1283523cb..49ac46062 100644 --- a/docs/README_Docker_and_RA.md +++ b/docs/README_Docker_and_RA.md @@ -138,7 +138,7 @@ You will need this info to retrieve your FMSPC. curl -v "https://api.trustedservices.intel.com/sgx/certification/v4/pckcert?encrypted_ppid={}&cpusvn={}&pcesvn={}&pceid={}" -H "Ocp-Apim-Subscription-Key:{YOUR_API_KEY}" ``` -Replace the curly braces in the above command with the values acquired from `pckid_retrieval.csv` and `YOUR_API_KEY` with your API key from subsribing to Intel's PCS Service. +Replace the curly braces in the above command with the values acquired from `pckid_retrieval.csv` and `YOUR_API_KEY` with your API key from subscribing to Intel's PCS Service. The response should look as follows: From af0b775108a4627168e039da3fac276c6cb90de2 Mon Sep 17 00:00:00 2001 From: David Klank <155117116+davidjsonn@users.noreply.github.com> Date: Thu, 5 Jun 2025 15:34:13 +0300 Subject: [PATCH 2/2] fix error eip4844.rs --- lib/src/primitives/eip4844.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/primitives/eip4844.rs b/lib/src/primitives/eip4844.rs index 6071ec37f..73dd641df 100644 --- a/lib/src/primitives/eip4844.rs +++ b/lib/src/primitives/eip4844.rs @@ -14,7 +14,7 @@ pub use kzg::{eip_4844::deserialize_blob_rust, kzg_proofs::KZGSettings}; pub static KZG_SETTINGS_BIN: &[u8] = include_bytes!("../../kzg_settings/zkcrypto_kzg_settings.bin"); // The KZG settings under the concrete type of kzg backend -// We directly include the serialzed struct to avoid conversion cost in guest +// We directly include the serialized struct to avoid conversion cost in guest // To generate the bytes, run: // // cargo run --bin gen_kzg_settings