We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
latest
macOS/Linux
as title, full-node failed to commit block 21910804
The culprit tx is https://iotexscan.io/tx/9d5bd12aa6b8bf7bc803b253f2dcc26abcd6980fa953491b1270dfdfbf64aacb, which is a CandidateUpdate but with empty name. It triggers the following error
CandidateUpdate
func (cu *CandidateUpdate) SanityCheck() error { if !IsValidCandidateName(cu.Name()) { return ErrInvalidCanName } return nil }
the check code is added by #3705, and was included in v1.10.0 release on Mar 23, 2023, which happened after the culprit tx
The text was updated successfully, but these errors were encountered:
#4564 is also required to prevent this from happening again
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
What version of iotex-core image (or code branch) are you using?
latest
What operating system and processor architecture are you using?
macOS/Linux
What did you do? If possible, provide a recipe for reproducing the error.
as title, full-node failed to commit block 21910804
Root-cause
The culprit tx is https://iotexscan.io/tx/9d5bd12aa6b8bf7bc803b253f2dcc26abcd6980fa953491b1270dfdfbf64aacb, which is a
CandidateUpdate
but with empty name. It triggers the following errorthe check code is added by #3705, and was included in v1.10.0 release on Mar 23, 2023, which happened after the culprit tx
The text was updated successfully, but these errors were encountered: