From b6f4fde4c0eb75203178a1639b8844b9a5590ba6 Mon Sep 17 00:00:00 2001 From: Pranay Valson Date: Wed, 27 Mar 2024 19:34:19 -0700 Subject: [PATCH] fix type fields for blobTxSidecars bytes Signed-off-by: Pranay Valson --- codec/block-ethereum.avsc | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/codec/block-ethereum.avsc b/codec/block-ethereum.avsc index e70b8d58..5271adcd 100644 --- a/codec/block-ethereum.avsc +++ b/codec/block-ethereum.avsc @@ -588,27 +588,24 @@ "fields":[ { "name":"Blobs", - "type":[ - "null", - "string" - ], - "default":"null" + "type":{ + "type":"array", + "items":"bytes" + } }, { "name":"Commitments", - "type":[ - "null", - "string" - ], - "default":"null" + "type":{ + "type":"array", + "items":"bytes" + } }, { "name":"Proofs", - "type":[ - "null", - "string" - ], - "default":"null" + "type":{ + "type":"array", + "items":"bytes" + } } ] }