-
Notifications
You must be signed in to change notification settings - Fork 117
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
Add an Abscissa command for DNS seeder information. #54
Comments
Call network.init(), handle |
As part of this, we can probably remove the |
Moved SeedService out of the command closure Command currently spawns a tokio task to DOS the seed service with `Request::GetPeers` every second. Pertains to #54
Moved SeedService out of the command closure Command currently spawns a tokio task to DOS the seed service with `Request::GetPeers` every second. Pertains to #54
I've been modifying the |
Resolved by #54 |
Our MVP to test our new networking design is a daemon that can power a DNS seeder; this is a trivial application but it is measurable and concrete and tests that the networking design does actually work in a visible way, before we complete the rest of the work of the node implementation.
Currently the only command we have is the
connect
command, which exists solely for debugging during development and is intended to be thrown away.To run the daemon we need to have a different command. This could either be called
run
(the future command to start a full node should certainly berun
), or something else to indicate that the command only does address spidering and that the rest of the node functionality is not yet implemented. Thoughts?The text was updated successfully, but these errors were encountered: