We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Peer
Is your feature request related to a problem? Please describe. Support validator peer with no connection for ignite/cli#2220
Describe the solution you'd like
Adding none or a similar name in Peer
none
spn/proto/launch/genesis_validator.proto
Line 18 in 2243743
message Peer { string id = 1; oneof connection { string tcpAddress = 2; HTTPTunnel httpTunnel = 3; [EMPTY] none = 4; // empty struct } message HTTPTunnel { string name = 1; string address = 2; } }
We still require to provide node ID which may not have practical usage for the launch
Describe alternatives you've considered
Allowing zero value for Peer. On the client, if id == "" the validator has no exposed peer
id == ""
The text was updated successfully, but these errors were encountered:
ivanovpetr
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
Support validator peer with no connection for ignite/cli#2220
Describe the solution you'd like
Adding
none
or a similar name inPeer
spn/proto/launch/genesis_validator.proto
Line 18 in 2243743
We still require to provide node ID which may not have practical usage for the launch
Describe alternatives you've considered
Allowing zero value for
Peer
. On the client, ifid == ""
the validator has no exposed peerThe text was updated successfully, but these errors were encountered: