Skip to content

Commit

Permalink
rpc-probe fixes and kvstore-fixtures and tests (#758)
Browse files Browse the repository at this point in the history
* rpc-probe kvstore-fixtures

* More tests

* search result tests

* clippy advisory

* Found the bug again

* Changed rpc-probe "output" default value

* Update CHANGELOG

Signed-off-by: Thane Thomson <connect@thanethomson.com>

Co-authored-by: Thane Thomson <connect@thanethomson.com>
  • Loading branch information
greg-szabo and thanethomson committed Dec 22, 2020
1 parent ab11969 commit bb6c5d6
Show file tree
Hide file tree
Showing 84 changed files with 4,027 additions and 85 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Unreleased

### IMPROVEMENTS:

* `[rpc, tools]` The RPC probe has been moved into the `tools` folder and can
now be easily executed against a Tendermint node running the kvstore app by
way of [cargo make]. `tendermint-rpc` test coverage has been expanded here
too. ([#758])

[#758]: https://github.com/informalsystems/tendermint-rs/pull/758
[cargo make]: https://github.com/sagiegurari/cargo-make

## v0.17.0

*Dec 17, 2020*
Expand Down
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ members = [
"p2p",
"proto",
"rpc",
"rpc-probe",
"tendermint",
"testgen"
]
Expand Down
69 changes: 0 additions & 69 deletions rpc-probe/run-with-docker.sh

This file was deleted.

1 change: 1 addition & 0 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ tendermint-proto = { version = "0.17.0", path = "../proto" }
thiserror = "1"
uuid = { version = "0.8", default-features = false }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
walkdir = "2.3"

async-trait = { version = "0.1", optional = true }
async-tungstenite = { version = "0.9", features = ["tokio-runtime"], optional = true }
Expand Down
1 change: 1 addition & 0 deletions rpc/src/endpoint/abci_query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pub struct Request {
pub height: Option<block::Height>,

/// Include proof in response
#[serde(default)]
pub prove: bool,
}

Expand Down
Loading

0 comments on commit bb6c5d6

Please sign in to comment.