We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc61206 commit bb4f511Copy full SHA for bb4f511
block/internal/executing/executor.go
@@ -386,8 +386,8 @@ func (e *Executor) produceBlock() error {
386
// Force-included txs (from DA) MUST be validated as they're from untrusted sources
387
// Mempool txs can skip validation as they were validated when added to mempool
388
ctx := e.ctx
389
- if batchData != nil && batchData.Batch != nil && batchData.Batch.ForceIncludedMask != nil {
390
- ctx = coreexecutor.WithForceIncludedMask(ctx, batchData.Batch.ForceIncludedMask)
+ if batchData != nil && batchData.Batch != nil && batchData.ForceIncludedMask != nil {
+ ctx = coreexecutor.WithForceIncludedMask(ctx, batchData.ForceIncludedMask)
391
}
392
393
newState, err := e.applyBlock(ctx, header.Header, data)
0 commit comments