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
unordered_txs
When testing system-test, I got an error when run snapshots restore with simapp v1.
snapshots restore
extension unordered_txs don't exhausted payload stream
Wonder why we have diff conditions with same snapshot item:
payload := nextItem.GetExtensionPayload() if payload == nil { return nil, io.EOF }
and
if nextItem.GetExtensionPayload() != nil { return fmt.Errorf("extension %s don't exhausted payload stream", metadata.Name) }
currently failed because 2nd conditon.
The text was updated successfully, but these errors were encountered:
Fixed by #21357
Sorry, something went wrong.
hieuvubk
No branches or pull requests
When testing system-test, I got an error when run
snapshots restore
with simapp v1.Wonder why we have diff conditions with same snapshot item:
and
currently failed because 2nd conditon.
The text was updated successfully, but these errors were encountered: