-
Notifications
You must be signed in to change notification settings - Fork 419
test: sig verification panic on nil pub key #4879
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
test: sig verification panic on nil pub key #4879
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
Finally able to repro the exact error stack trace
|
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.
so the plan is to wait and see if the cosmos-sdk's upstream changes this to stop panicking in this case and pull their changes?
what about syncing? if I understand correctly, when syncing with the new sdk, this panics and it shows in the logs, should we document somewhere that these are expected logs (for node operators not to bombard us with questions about this?)
Yes.
I don't think the logs will occur during syncing because a tx with a nil pubkey in the signature data shouldn't be included in any blocks. The log will only appear for new txs that enter a node's mempool. We could still document it somewhere |
Closes #4847