From 440d1bf738d1d93b412af3c3b6f9d0ee6d83b3ff Mon Sep 17 00:00:00 2001 From: Pranay Valson Date: Tue, 23 Apr 2024 18:20:06 -0700 Subject: [PATCH] enable extractor scripts to export BlobSideCars Signed-off-by: Pranay Valson --- scripts/replica/extractor2.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/replica/extractor2.go b/scripts/replica/extractor2.go index f315dfa8..e39893b7 100644 --- a/scripts/replica/extractor2.go +++ b/scripts/replica/extractor2.go @@ -208,6 +208,7 @@ func getComponents(segment *event.ReplicationSegment) []*blockPair { Senders: replica.Data.Senders, State: replica.Data.State, Withdrawals: replica.Data.Withdrawals, + BlobTxSidecars: replica.Data.BlobTxSidecars, } result := types.BlockReplica{ @@ -222,6 +223,7 @@ func getComponents(segment *event.ReplicationSegment) []*blockPair { Senders: replica.Data.Senders, State: &types.StateSpecimen{}, Withdrawals: replica.Data.Withdrawals, + BlobTxSidecars: replica.Data.BlobTxSidecars, } pairs = append(pairs, &blockPair{ specimen: &specimen,