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
Acknowledgement::Error
Our Acknowledgement::Error once serialized is different from ibc-go.
Compare ibc-go output with our AsRef<u8> Error variant.
AsRef<u8>
Error
v0.27.0
The text was updated successfully, but these errors were encountered:
RecvPacket
Acknowledgement
Note that the error output needs to be of the form {"error":"<whatever>"} to be compatible with all versions of ibc-go.
{"error":"<whatever>"}
ibc-go did in fact change its error output:
v3.0.0: {"error":"cannot unmarshal ICS-20 transfer packet data"}
{"error":"cannot unmarshal ICS-20 transfer packet data"}
v5.0.0: {"error":"ABCI code: %d: cannot unmarshal ICS-20 transfer packet data"}
{"error":"ABCI code: %d: cannot unmarshal ICS-20 transfer packet data"}
Sorry, something went wrong.
I will close as duplicate of #369, and fix both the success and error scenarios with that issue.
plafer
No branches or pull requests
Bug Summary
Our
Acknowledgement::Error
once serialized is different from ibc-go.Details
Compare ibc-go output with our
AsRef<u8>
Error
variant.Version
v0.27.0
The text was updated successfully, but these errors were encountered: