From a23bde347be4184877a22788d81f32d541ce3202 Mon Sep 17 00:00:00 2001 From: Mikhail Kalinin Date: Thu, 25 Mar 2021 17:51:32 +0600 Subject: [PATCH] Bytes1 to byte in ApplicationPayload.logs_bloom --- specs/merge/beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/merge/beacon-chain.md b/specs/merge/beacon-chain.md index b8362771e..0d434db4f 100644 --- a/specs/merge/beacon-chain.md +++ b/specs/merge/beacon-chain.md @@ -114,7 +114,7 @@ class ApplicationPayload(Container): gas_limit: uint64 gas_used: uint64 receipt_root: Bytes32 - logs_bloom: Vector[Bytes1, BYTES_PER_LOGS_BLOOM] + logs_bloom: Vector[byte, BYTES_PER_LOGS_BLOOM] transactions: List[Transaction, MAX_APPLICATION_TRANSACTIONS] ```