Skip to content
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

move min bootstrap and traffic to v16 #2363

Merged
merged 1 commit into from Oct 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions nano/secure/common.hpp
Expand Up @@ -336,10 +336,10 @@ class protocol_constants
uint8_t protocol_version = 0x11;

/** Minimum accepted protocol version */
uint8_t protocol_version_min = 0x0d;
uint8_t protocol_version_min = 0x10;

/** Do not bootstrap from nodes older than this version. */
uint8_t protocol_version_bootstrap_min = 0x0d;
uint8_t protocol_version_bootstrap_min = 0x10;

/** Do not lazy bootstrap from nodes older than this version. */
uint8_t protocol_version_bootstrap_lazy_min = 0x10;
Expand Down