You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tower-abci works well with cometbft v0.38.16, but with v1.0.0:
2024-12-25T18:25:44.415872Z INFO tower_abci::v038::server: ABCI server starting on tcp socket addr=127.0.0.1:26658
2024-12-25T18:25:48.350124Z INFO tower_abci::v038::server: listening for requests
2024-12-25T18:25:48.350790Z INFO tower_abci::v038::server: listening for requests
2024-12-25T18:25:48.350970Z INFO tower_abci::v038::server: listening for requests
2024-12-25T18:25:48.351123Z INFO tower_abci::v038::server: listening for requests
thread 'tokio-runtime-worker' panicked at /Users/larry/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tower-abci-0.18.0/src/v038/server.rs:173:75:
called `Result::unwrap()` on an `Err` value: missing public key
Location:
/Users/larry/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flex-error-0.4.4/src/tracer_impl/eyre.rs:10:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
This happens when starting a chain fresh from genesis. If I start a chain with 0.38, kill it, then restart with 1.0.0, the chain can carry on normally.
The text was updated successfully, but these errors were encountered:
Interesting, by default, I would expect the v038 protocol to carry over v1 nicely, but this is actually encouraging. I don't see any published domain types in either tendermint-rs or cometbft-rs, but:
At least the protos are published on buf, so I can give this a deeper look very soon and figure it out. I think we can add support soon after domain types become available. We might have to write them, but that's fine.
tower-abci works well with cometbft v0.38.16, but with v1.0.0:
This happens when starting a chain fresh from genesis. If I start a chain with 0.38, kill it, then restart with 1.0.0, the chain can carry on normally.
The text was updated successfully, but these errors were encountered: