-
Notifications
You must be signed in to change notification settings - Fork 790
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
CLI validate blocks #920
CLI validate blocks #920
Conversation
Does this support epoch blocks and the merged iterators ? |
rai/rai_node/entry.cpp
Outdated
else if (vm.count ("debug_validate_blocks")) | ||
{ | ||
rai::inactive_node node (data_path); | ||
rai::transaction transaction (node.node->store.environment, nullptr, false); |
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.
This constructor changed and Colin was smart enough to change it so that this is caught. The last two arguments are reversed with the "parent" argument being optional and defaulting to nullptr, so it should be (environment, false)
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.
Excellent work !
No description provided.