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.
2 parents 4430d8f + a7c6e10 commit c1a2c14Copy full SHA for c1a2c14
protocol/chainsync/server.go
@@ -62,6 +62,11 @@ func (s *Server) RollBackward(point common.Point, tip Tip) error {
62
return s.SendMessage(msg)
63
}
64
65
+func (s *Server) AwaitReply() error {
66
+ msg := NewMsgAwaitReply()
67
+ return s.SendMessage(msg)
68
+}
69
+
70
func (s *Server) RollForward(blockType uint, blockData []byte, tip Tip) error {
71
if s.Mode() == protocol.ProtocolModeNodeToNode {
72
eraId := ledger.BlockToBlockHeaderTypeMap[blockType]
0 commit comments