We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d617fd commit 21b534cCopy full SHA for 21b534c
snow/engine/common/message.go
@@ -11,9 +11,13 @@ import "fmt"
11
type Message uint32
12
13
const (
14
- // PendingTxs notifies a consensus engine that
15
- // its VM has pending transactions
16
- // (i.e. it would like to add a new block/vertex to consensus)
+ // PendingTxs notifies a consensus engine that its VM has pending
+ // transactions.
+ //
17
+ // The consensus engine must eventually call BuildBlock at least once after
18
+ // receiving this message. If the consensus engine receives multiple
19
+ // PendingTxs messages between calls to BuildBlock, the engine may only call
20
+ // BuildBlock once.
21
PendingTxs Message = iota + 1
22
23
// StateSyncDone notifies the state syncer engine that the VM has finishing
0 commit comments