diff --git a/examples/chat2/chat.go b/examples/chat2/chat.go index a8d68264..051a7c40 100644 --- a/examples/chat2/chat.go +++ b/examples/chat2/chat.go @@ -195,11 +195,11 @@ func (c *Chat) parseInput() { c.ui.ErrorMessage(err) return } - peerInfoMsg += fmt.Sprintf(" Protocols: %s\n", strings.Join(peerProtocols, ", ")) - peerInfoMsg += " Addresses:\n" - peerInfoMsg += fmt.Sprintf(" - %s:\n", p.Pretty()) + peerInfoMsg += fmt.Sprintf("• %s:\n", p.Pretty()) + peerInfoMsg += fmt.Sprintf(" Protocols: %s\n", strings.Join(peerProtocols, ", ")) + peerInfoMsg += " Addresses:\n" for _, addr := range peerInfo.Addrs { - peerInfoMsg += fmt.Sprintf(" %s/p2p/%s\n", addr.String(), p.Pretty()) + peerInfoMsg += fmt.Sprintf(" - %s/p2p/%s\n", addr.String(), p.Pretty()) } } c.ui.InfoMessage(peerInfoMsg) diff --git a/examples/chat2/exec.go b/examples/chat2/exec.go index 005b648b..fe8d3285 100644 --- a/examples/chat2/exec.go +++ b/examples/chat2/exec.go @@ -33,7 +33,6 @@ func execute(options Options) { node.WithPrivateKey(options.NodeKey), node.WithNTP(), node.WithHostAddress(hostAddr), - node.WithWakuStore(false), } if options.Relay.Enable {