diff --git a/pkg/cannon/deriver/beacon/eth/v2/execution_transaction.go b/pkg/cannon/deriver/beacon/eth/v2/execution_transaction.go index 81bb1e80..7ba80cec 100644 --- a/pkg/cannon/deriver/beacon/eth/v2/execution_transaction.go +++ b/pkg/cannon/deriver/beacon/eth/v2/execution_transaction.go @@ -333,8 +333,6 @@ func (b *ExecutionTransactionDeriver) processSlot(ctx context.Context, slot phas tx.BlobSidecarsSize = fmt.Sprint(sidecarsSize) tx.BlobSidecarsEmptySize = fmt.Sprint(sidecarsEmptySize) - } else { - continue } event, err := b.createEvent(ctx, tx, uint64(index), blockIdentifier, transaction) diff --git a/pkg/cannon/ethereum/beacon.go b/pkg/cannon/ethereum/beacon.go index d9e887a7..7504e715 100644 --- a/pkg/cannon/ethereum/beacon.go +++ b/pkg/cannon/ethereum/beacon.go @@ -91,8 +91,8 @@ func NewBeaconNode(ctx context.Context, name string, config *Config, log logrus. blockPreloadChan: make(chan string, config.BlockPreloadQueueSize), blockPreloadSem: blockSem, blobSidecarsCache: ttlcache.New( - ttlcache.WithTTL[string, []*deneb.BlobSidecar](config.BlockCacheTTL.Duration), - ttlcache.WithCapacity[string, []*deneb.BlobSidecar](config.BlockCacheSize), + ttlcache.WithTTL[string, []*deneb.BlobSidecar](config.BlobSidecarsCacheTTL.Duration), + ttlcache.WithCapacity[string, []*deneb.BlobSidecar](config.BlobSidecarsCacheSize), ), blobSidecarsPreloadChan: make(chan string, config.BlobSidecarsPreloadQueueSize), blobSidecarsPreloadSem: blobSidecarsSem,