Skip to content

Commit b9c9ee2

Browse files
committed
use tcp port for p2p
1 parent 6002ace commit b9c9ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/components/clnode/clnode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func newNode(in *Input, pgOut *postgres.Output) (*NodeOut, error) {
148148
}
149149

150150
httpPort := fmt.Sprintf("%s/tcp", DefaultHTTPPort)
151-
p2pPort := fmt.Sprintf("%s/udp", DefaultP2PPort)
151+
p2pPort := fmt.Sprintf("%s/tcp", DefaultP2PPort)
152152
var containerName string
153153
if in.Node.Name != "" {
154154
containerName = in.Node.Name

0 commit comments

Comments
 (0)