From 5978c86f3a6454ffa8d91326fe8c3f758d1ff4a1 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Sun, 10 Apr 2022 18:41:49 +0800 Subject: [PATCH] Typo fix: `ksg_to_version_hash` -> `kzg_to_versioned_hash` --- specs/eip4844/beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/eip4844/beacon-chain.md b/specs/eip4844/beacon-chain.md index 4caa91ead0..54ff3f79cd 100644 --- a/specs/eip4844/beacon-chain.md +++ b/specs/eip4844/beacon-chain.md @@ -151,7 +151,7 @@ def verify_kzgs_against_transactions(transactions: Sequence[Transaction], blob_k for tx in transactions: if tx[0] == BLOB_TX_TYPE: all_versioned_hashes.extend(tx_peek_blob_versioned_hashes(tx)) - return all_versioned_hashes == [ksg_to_version_hash(kzg) for kzg in blob_kzgs] + return all_versioned_hashes == [kzg_to_versioned_hash(kzg) for kzg in blob_kzgs] ``` ## Beacon chain state transition function