Skip to content

Commit

Permalink
Merge pull request #275 from multiversx/ignore-receipts-intra-mb
Browse files Browse the repository at this point in the history
Ignore receipts minbiblocks
  • Loading branch information
miiu96 authored May 14, 2024
2 parents fa7dfd0 + cfecbc6 commit 5b7626d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process/elasticproc/block/blockProcessor.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ func appendBlockDetailsFromHeaders(block *data.Block, header coreData.HeaderHand

func appendBlockDetailsFromIntraShardMbs(block *data.Block, intraShardMbs []*block.MiniBlock, pool *outport.TransactionPool, offset int) {
for idx, intraMB := range intraShardMbs {
if intraMB.Type == nodeBlock.PeerBlock {
if intraMB.Type == nodeBlock.PeerBlock || intraMB.Type == nodeBlock.ReceiptBlock {
continue
}

Expand Down

0 comments on commit 5b7626d

Please sign in to comment.