File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
consensus/scheme/rolldpos Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -237,15 +237,15 @@ func (ctx *rollDPoSCtx) Prepare() (
237
237
return
238
238
}
239
239
if isDelegate = ctx .round .IsDelegate (ctx .encodedAddr ); ! isDelegate {
240
- ctx .logger ().Info ("current node is not a delegate" )
240
+ ctx .logger ().Info ("current node is not an active consensus delegate" )
241
241
delay = ctx .round .NextRoundStartTime ().Sub (ctx .clock .Now ())
242
242
return
243
243
}
244
244
if isProposer = ctx .round .Proposer () == ctx .encodedAddr ; isProposer {
245
245
ctx .logger ().Info ("current node is a proposer" )
246
246
proposal , err = ctx .mintBlock ()
247
247
} else {
248
- ctx .logger ().Info ("current node is a delegate" )
248
+ ctx .logger ().Info ("current node is an active consensus delegate" )
249
249
locked = ctx .round .IsLocked ()
250
250
}
251
251
delay = ctx .round .StartTime ().Sub (ctx .clock .Now ())
You can’t perform that action at this time.
0 commit comments