Skip to content

Commit

Permalink
fix boot node invalid address issue (#4724)
Browse files Browse the repository at this point in the history
  • Loading branch information
GheisMohammadi authored Aug 7, 2024
1 parent 6b25283 commit ce9ce93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/bootnode/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func main() {
}

fmt.Printf("bootnode BN_MA=%s",
fmt.Sprintf("/ip4/%s/tcp/%s/p2p/%s", *ip, *port, host.GetID().Pretty()),
fmt.Sprintf("/ip4/%s/tcp/%s/p2p/%s\n", *ip, *port, host.GetID().Pretty()),
)

host.Start()
Expand Down

0 comments on commit ce9ce93

Please sign in to comment.