diff options
Diffstat (limited to 'core/consensus.go')
-rw-r--r-- | core/consensus.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/consensus.go b/core/consensus.go index 0754e80..b84947a 100644 --- a/core/consensus.go +++ b/core/consensus.go @@ -137,7 +137,7 @@ func (recv *consensusBAReceiver) ConfirmBlock( } } else { var exist bool - block, exist = recv.agreementModule.findCandidateBlockNoLock(hash) + block, exist = recv.agreementModule.findBlockNoLock(hash) if !exist { recv.consensus.logger.Error("Unknown block confirmed", "hash", hash.String()[:6], |