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: 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