-
Notifications
You must be signed in to change notification settings - Fork 220
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
fix: replace usage of RangeProof MR with Witness MR #3129
fix: replace usage of RangeProof MR with Witness MR #3129
Conversation
#[error("Invalid range proof merkle root")] | ||
InvalidRangeProofMr, | ||
#[error("Invalid witness merkle root")] | ||
InvalidWitnessMr, |
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 variant isnt used (assuming everything compiles) and can be removed. Did a quick search and same for InvalidKernelMr
and InvalidOutputMr
can be removed
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.
...and WeakerAccumulatedDifficulty
, they are all handled in BlockError(..)
and PowError(...)
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.
Approved, but agree that they can be removed
PR queued successfully. Your position in queue is: 2 |
cdab964
to
21b886b
Compare
remove unused errors
21b886b
to
88548f9
Compare
PR is on top of the queue now |
PR failed to merge with reason: Not approved |
PR queued successfully. Your position in queue is: 1 |
Description
There are still some names references a rangeproof Mr, this does not exist anymore and there is only a witness Mr.
Motivation and Context
How Has This Been Tested?
Checklist:
development
branch.