Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0 logging level for processing blocks #1358

Merged
merged 1 commit into from
Jun 4, 2024
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
Loading