Skip to content

Commit

Permalink
Fixed version name in broadcast, be sure to update bootnodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Djadih committed Feb 28, 2023
1 parent 9f7bc79 commit 598b999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func (c *Config) NodeName() string {
name += "/" + c.UserIdent
}
if c.Version != "" {
name += "/v" + c.Version
name += "/" + c.Version
}
name += "/" + runtime.GOOS + "-" + runtime.GOARCH
name += "/" + runtime.Version()
Expand Down

0 comments on commit 598b999

Please sign in to comment.