Move out tendermint::config to tendermint-config crate#986
Move out tendermint::config to tendermint-config crate#986thanethomson merged 19 commits intomasterfrom
tendermint::config to tendermint-config crate#986Conversation
Codecov Report
@@ Coverage Diff @@
## master #986 +/- ##
========================================
- Coverage 72.7% 72.7% -0.1%
========================================
Files 204 206 +2
Lines 16631 16641 +10
========================================
+ Hits 12101 12107 +6
- Misses 4530 4534 +4
Continue to review full report at Codecov.
|
ba35c63 to
4e49034
Compare
xla
left a comment
There was a problem hiding this comment.
The metadata in the new cargo toml should be catered to the actual crate instead of a verbatim copy of the tendermint cargo manifest.
Yeah I missed updating that after copying the boilerplate. Fixed it now. |
|
Rehashing my note in #983: I have taken a look at the use of The main difference I see of using Note that the other alternative is to just wait for servo/rust-url#717 to get merged and released. |
96a51f4 to
ba205e2
Compare
Co-authored-by: Thane Thomson <thane@informal.systems>
|
|
||
| /// RPC address | ||
| pub rpc_address: net::Address, | ||
| pub rpc_address: String, |
There was a problem hiding this comment.
One unresolved issue is whether using String instead of net::Address for rpc_address will break any functionality. The main difference is in the implementations of Deserialize and Display. Any idea of how this field is used in practice?
There was a problem hiding this comment.
No idea here actually.
* Fix `cargo test` and add check to CI (#990) * Relocate ABCI test to fix broken doctest Signed-off-by: Thane Thomson <connect@thanethomson.com> * Use tokio_test for mock client doctest Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add CI test for default features Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add `block_search` RPC endpoint (#991) * Add block_search RPC endpoint and tests * Add .changelog entry * Fix comments * tools: Fix `block_search` endpoint integration tests (#999) Closes #998 * Bump integration test tendermint to v0.34.13 * Fix kvstore integration tests * Bump tendermint version to v0.34.13 in CI Signed-off-by: Thane Thomson <connect@thanethomson.com> * ci: Build and check tools (#997) So far only the kvstore tests ran as part of the Github workfows. This would leave opportunity for changes to introduce breakage to the builds of the tools. In this change the same build and clippy stages are introduced for the tools workspace that currently run for the top-level one. Signed-off-by: xla <self@xla.is> * tools: Add `block_search` method to RPC probe (#1002) * Add missing block_search endpoint * Bump tendermint version to v0.34.13 Signed-off-by: Thane Thomson <connect@thanethomson.com> Co-authored-by: Shoaib Ahmed <sufialhussaini@gmail.com> Co-authored-by: xla <a.simmerl@gmail.com>
Signed-off-by: Thane Thomson <connect@thanethomson.com>
Signed-off-by: Thane Thomson <connect@thanethomson.com>
Signed-off-by: Thane Thomson <connect@thanethomson.com>
thanethomson
left a comment
There was a problem hiding this comment.
I'd say let's go ahead and merge this. Thanks @soareschen! 🎉
Fixes #983 and #985.
.changelog/