From eb26a1d74c8f44b3faa399f6cd8d71903ab4b4e1 Mon Sep 17 00:00:00 2001 From: terence tsao Date: Sat, 26 Mar 2022 08:26:52 -0700 Subject: [PATCH] EIP4844: fix a minor typo --- 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 d0de75445..4caa91ead 100644 --- a/specs/eip4844/beacon-chain.md +++ b/specs/eip4844/beacon-chain.md @@ -149,7 +149,7 @@ def tx_peek_blob_versioned_hashes(opaque_tx: Transaction) -> Sequence[VersionedH def verify_kzgs_against_transactions(transactions: Sequence[Transaction], blob_kzgs: Sequence[KZGCommitment]) -> bool: all_versioned_hashes = [] for tx in transactions: - if opaque_tx[0] == BLOB_TX_TYPE: + 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] ```