diff --git a/integrationTests/testProcessorNode.go b/integrationTests/testProcessorNode.go index 491b147dc0..8533c24530 100644 --- a/integrationTests/testProcessorNode.go +++ b/integrationTests/testProcessorNode.go @@ -2837,7 +2837,6 @@ func (tpn *TestProcessorNode) setBlockSignatures(blockHeader data.HeaderHandler) if !wasAdded { log.Warn("ProofsPool.AddProof not added", "currHdrHash", currHdrHash, "node", tpn.OwnAccount.Address) } - return err } err = blockHeader.SetPubKeysBitmap(pubKeysBitmap) diff --git a/testscommon/dataRetriever/proofsPoolMock.go b/testscommon/dataRetriever/proofsPoolMock.go index bc9d1998cf..7461f28abe 100644 --- a/testscommon/dataRetriever/proofsPoolMock.go +++ b/testscommon/dataRetriever/proofsPoolMock.go @@ -20,7 +20,7 @@ func (p *ProofsPoolMock) AddProof(headerProof data.HeaderProofHandler) bool { return p.AddProofCalled(headerProof) } - return false + return true } // CleanupProofsBehindNonce -