-
Notifications
You must be signed in to change notification settings - Fork 13
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
Forward/Revert blocks to the specified height #68
Conversation
|
||
let reverted = self | ||
.backend | ||
.revert(diff, true) |
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.
Backend revert method doesn't work when blocks are finalized for some reason, even though it is described that providing true
as the second argument can revert finalized blocks (in unsafe way).
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.
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.
LGTM
…forward-revert-blocks # Conflicts: # README.md # node/src/rpc.rs
Resolve #69
forward_blocks_to
: Forward blocks to the specified block height.revert_blocks_to
: Revert blocks to the specified block height. (Reverting finalized blocks only works when--state-pruning
mode isarchive
)Examples