Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -2273,14 +2273,14 @@ func (srv *Server) _handleBlock(pp *Peer, blk *MsgDeSoBlock, isLastBlock bool) {
// If the FastHotStuffConsensus has been initialized, then we pass the block to the new consensus
// which will validate the block, try to apply it, and handle the orphan case by requesting missing
// parents.
glog.V(1).Infof(CLog(Cyan, fmt.Sprintf(
glog.V(0).Infof(CLog(Cyan, fmt.Sprintf(
"Server._handleBlock: Processing block %v with FastHotStuffConsensus with SyncState=%v for peer %v",
blk, srv.blockchain.chainState(), pp,
)))
blockHashesToRequest, err = srv.fastHotStuffConsensus.HandleBlock(pp, blk)
isOrphan = len(blockHashesToRequest) > 0
} else if !verifySignatures {
glog.V(1).Infof(CLog(Cyan, fmt.Sprintf(
glog.V(0).Infof(CLog(Cyan, fmt.Sprintf(
"Server._handleBlock: Processing block %v WITHOUT signature checking because SyncState=%v for peer %v",
blk, srv.blockchain.chainState(), pp,
)))
Expand All @@ -2289,7 +2289,7 @@ func (srv *Server) _handleBlock(pp *Peer, blk *MsgDeSoBlock, isLastBlock bool) {
// TODO: Signature checking slows things down because it acquires the ChainLock.
// The optimal solution is to check signatures in a way that doesn't acquire the
// ChainLock, which is what Bitcoin Core does.
glog.V(1).Infof(CLog(Cyan, fmt.Sprintf(
glog.V(0).Infof(CLog(Cyan, fmt.Sprintf(
"Server._handleBlock: Processing block %v WITH signature checking because SyncState=%v for peer %v",
blk, srv.blockchain.chainState(), pp,
)))
Expand Down