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
Response
Sync and async transaction broadcast request errors have a code to identify the cause of the error, but these errors can originated from different sources such as Cosmos SDK, https://github.com/cosmos/cosmos-sdk/blob/main/types/errors/errors.go, or ibc-go channel module, https://github.com/cosmos/ibc-go/blob/main/modules/core/04-channel/types/errors.go. The code alone might not have enough information as the sources sometimes use the same codes. For example insufficient fee from Cosmos SDK and invalid packet from ibc-go channel module both have the error code 13:
insufficient fee
invalid packet
13
Adding the codespace to the Response would fix this issue.
codespace
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Sync and async transaction broadcast request errors have a code to identify the cause of the error, but these errors can originated from different sources such as Cosmos SDK, https://github.com/cosmos/cosmos-sdk/blob/main/types/errors/errors.go, or ibc-go channel module, https://github.com/cosmos/ibc-go/blob/main/modules/core/04-channel/types/errors.go.
The code alone might not have enough information as the sources sometimes use the same codes. For example
insufficient fee
from Cosmos SDK andinvalid packet
from ibc-go channel module both have the error code13
:Definition of "done"
Adding the
codespace
to theResponse
would fix this issue.The text was updated successfully, but these errors were encountered: