fixed typos

This commit is contained in:
Aviv Eyal 2017-11-27 20:38:49 +02:00 committed by Steven Allen
parent 3f926c52eb
commit f0b185695a
2 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@ func main() {
log.Printf("This is a conversation between %s and %s\n", h1.host.ID(), h2.host.ID()) log.Printf("This is a conversation between %s and %s\n", h1.host.ID(), h2.host.ID())
// send messages using the protocols
h1.pingProtocol.Ping(h2) h1.pingProtocol.Ping(h2)
h2.pingProtocol.Ping(h1) h2.pingProtocol.Ping(h1)
h1.echoProtocol.Echo(h2) h1.echoProtocol.Echo(h2)

View File

@ -46,7 +46,7 @@ func NewMessageData(nodeId string, messageId string, gossip bool) *p2p.MessageDa
type Node struct { type Node struct {
host host.Host // lib-p2p host host host.Host // lib-p2p host
pingProtocol *PingProtocol // ping protocol impl pingProtocol *PingProtocol // ping protocol impl
echoProtocol *EchoProtocol // echp protocl imp echoProtocol *EchoProtocol // echo protocol impl
} }
// create a new node with its implemented protocols // create a new node with its implemented protocols