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
It takes a key as input, but returns []struct{Key, Value}. We only seems to use res[0].Value (also in the client)
[]struct{Key, Value}
res[0].Value
reflect_test.go::TestMaskReflectWasmQueries
The text was updated successfully, but these errors were encountered:
Okay, we do need to return []Model for QueryMethodContractStateAll which returns all state.
[]Model
QueryMethodContractStateAll
We do not need to use the same return value for QueryMethodContractStateRaw.
QueryMethodContractStateRaw
I will maintain the behavior for all, but change it for raw.
Sorry, something went wrong.
ethanfrey
Successfully merging a pull request may close this issue.
It takes a key as input, but returns
[]struct{Key, Value}
. We only seems to useres[0].Value
(also in the client)reflect_test.go::TestMaskReflectWasmQueries
)The text was updated successfully, but these errors were encountered: