From ea4eb3cdbb39f40eda835d7d1d7d4ea4c57266da Mon Sep 17 00:00:00 2001 From: Alex Pikme Date: Fri, 27 Jun 2025 13:28:12 +0200 Subject: [PATCH 1/2] replace dead reference steel.rs --- crates/steel/tests/steel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/steel/tests/steel.rs b/crates/steel/tests/steel.rs index 98a5b792b..161b0fa4e 100644 --- a/crates/steel/tests/steel.rs +++ b/crates/steel/tests/steel.rs @@ -323,7 +323,7 @@ async fn sha256() { should_panic(expected = "EVM error: c-kzg feature is not enabled") )] async fn point_evaluation_precompile() { - // test data from: https://github.com/ethereum/c-kzg-4844/blob/main/tests/verify_kzg_proof/kzg-mainnet/verify_kzg_proof_case_correct_proof_31ebd010e6098750/data.yaml + // test data from: https://github.com/ethereum/c-kzg-4844/blob/main/tests/verify_kzg_proof/kzg-mainnet/verify_kzg_proof_case_correct_proof_0_0/data.yaml let commitment = hex!("8f59a8d2a1a625a17f3fea0fe5eb8c896db3764f3185481bc22f91b4aaffcca25f26936857bc3a7c2539ea8ec3a952b7").to_vec(); let mut versioned_hash = Sha256::digest(&commitment).to_vec(); versioned_hash[0] = 0x01; From 2576fc0313290b7f3d74fa627987ffcb80c639db Mon Sep 17 00:00:00 2001 From: Wolfgang Welz Date: Thu, 17 Jul 2025 09:27:28 +0200 Subject: [PATCH 2/2] Update steel.rs --- crates/steel/tests/steel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/steel/tests/steel.rs b/crates/steel/tests/steel.rs index 161b0fa4e..7be3472b4 100644 --- a/crates/steel/tests/steel.rs +++ b/crates/steel/tests/steel.rs @@ -323,7 +323,7 @@ async fn sha256() { should_panic(expected = "EVM error: c-kzg feature is not enabled") )] async fn point_evaluation_precompile() { - // test data from: https://github.com/ethereum/c-kzg-4844/blob/main/tests/verify_kzg_proof/kzg-mainnet/verify_kzg_proof_case_correct_proof_0_0/data.yaml + // test data from: https://github.com/ethereum/c-kzg-4844/blob/v1.0.3/tests/verify_kzg_proof/kzg-mainnet/verify_kzg_proof_case_correct_proof_31ebd010e6098750/data.yaml let commitment = hex!("8f59a8d2a1a625a17f3fea0fe5eb8c896db3764f3185481bc22f91b4aaffcca25f26936857bc3a7c2539ea8ec3a952b7").to_vec(); let mut versioned_hash = Sha256::digest(&commitment).to_vec(); versioned_hash[0] = 0x01;