-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go/oasis-node/cmd/config/migrate: Add runtime P2P seed address too #5332
Conversation
ffa35e3
to
9304789
Compare
Codecov Report
@@ Coverage Diff @@
## master #5332 +/- ##
==========================================
- Coverage 67.64% 67.16% -0.49%
==========================================
Files 525 525
Lines 55806 55812 +6
==========================================
- Hits 37752 37488 -264
- Misses 13534 13773 +239
- Partials 4520 4551 +31
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works! Approving, the comments can be taken into account or not.
Not sure if this is a bugfix, though 😄
9304789
to
9fe270e
Compare
Fixed :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! 👍
@@ -134,6 +134,23 @@ func convertP2P(i interface{}, oldS string, newS string) []string { | |||
return out | |||
} | |||
|
|||
// For each Tendermint seed node address, append the corresponding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the future, I believe that comments in Golang should start with the function's name. The same holds for variables. Unfortunately, I cannot find any useful links to support my claim 😃
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I'll fix this comment :)
9fe270e
to
ad143c1
Compare
When running the
config migrate
command, an additional P2P runtime seed address is added when migrating seed nodes.