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
iota validator make-validator-info
When running iota validator make-validator-info the generated validator.info contains these lines:
... network-address: /dns/65.109.144.22/tcp/8080/http p2p-address: /dns/65.109.144.22/udp/8084 primary-address: /dns/65.109.144.22/udp/8081 ...
There are multiple issues that should be fixed:
.../tcp/8081
<HOST_NAME>
/ip4/65.109.144.22/...
None of these issues really cause stuff not to work, but it would reduce confusion when setting up a validator.
The text was updated successfully, but these errors were encountered:
Started with primary-address, I see that Sui says /tcp/8081 in their doc. https://docs.sui.io/guides/operator/validator-tasks#connectivity , but in their code it is still udp/8081 everywhere, except in narwhal/config/tests.
primary-address
/tcp/8081
udp/8081
narwhal/config/tests
I had the impression that this is just a small change, looks like it is:
iota/crates/iota/src/validator_commands.rs
Lines 347 to 348 in cf7ec2b
but I see that to be consistent we need to change many other parts of the code from udp to tcp:
udp
tcp
search "/udp/8081" 9 results - 3 files docker/iota-network/genesis/compose-validators.yaml: 19 name: validator1 20: primary_address: /dns/validator1/udp/8081 28 name: validator2 29: primary_address: /dns/validator2/udp/8081 ... docker/iota-private-network/configs/genesis-template.yaml: ... docs/content/references/cli/validator.mdx: 181 "p2pAddress": "/dns/validator-2.r.iota-rebased-testnet.iota.cafe/udp/8084", 182: "primaryAddress": "/dns/validator-2.r.iota-rebased-testnet.iota.cafe/udp/8081", 183 "nextEpochAuthorityPubkeyBytes": null,
search "primary_address" 118 results - 25 files e.g. crates/iota/src/generate_genesis_checkpoint.rs: 38: primary_address: local_ip_utils::new_local_udp_address_for_testing(),
Sorry, something went wrong.
@gokhan-simsek-iota yes, you can go ahead and update all references to 8081/udp to be 8081/tcp. Those are still from the Narwhal consensus.
gokhan-simsek-iota
Successfully merging a pull request may close this issue.
When running
iota validator make-validator-info
the generated validator.info contains these lines:There are multiple issues that should be fixed:
.../tcp/8081
<HOST_NAME>
argument is an IPv4, we should use/ip4/65.109.144.22/...
insteadNone of these issues really cause stuff not to work, but it would reduce confusion when setting up a validator.
The text was updated successfully, but these errors were encountered: