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
This issue is similar to #898; the TX broadcaster contains the following code:
account, err := clientContext.AccountRetriever.GetAccount(clientContext, sdkAdd)
which is failed since the AccountRetriever is the auth module's implementation and uses the following function:
AccountRetriever
res, err := queryClient.Account(context.Background(), &QueryAccountRequest{Address: addr.String()}, grpc.Header(&header))
where addr.String() uses the static bech32 prefix and leads to the failure of this query when the chain's prefix is different.
addr.String()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This issue is similar to #898; the TX broadcaster contains the following code:
which is failed since the
AccountRetriever
is the auth module's implementation and uses the following function:where
addr.String()
uses the static bech32 prefix and leads to the failure of this query when the chain's prefix is different.The text was updated successfully, but these errors were encountered: