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
The abci-cli kvstore application does not appear to store the key height:
abci-cli kvstore
$ ./abci-cli kvstore $ ./build/tendermint node $ curl -s 'localhost:26657/broadcast_tx_commit?tx="key=value"' $ curl -s 'localhost:26657/abci_query?data="key"' { "jsonrpc": "2.0", "id": -1, "result": { "response": { "code": 0, "log": "exists", "info": "", "index": "0", "key": "a2V5", "value": "dmFsdWU=", "proof": null, "height": "0", "codespace": "" } } }
When testing, users expect the application to correctly return the height of the key. We should meet this expectation.
The text was updated successfully, but these errors were encountered:
erikgrinaker
Successfully merging a pull request may close this issue.
Summary
The
abci-cli kvstore
application does not appear to store the key height:Problem Definition
When testing, users expect the application to correctly return the height of the key. We should meet this expectation.
For Admin Use
The text was updated successfully, but these errors were encountered: