-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into romac/allow-misformed-block
- Loading branch information
Showing
24 changed files
with
669 additions
and
399 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/breaking-changes/1389-blockidflag-to-primitive.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- `[tendermint-proto]` Remove redundant impl of `num_traits::ToPrimitive` for `BlockIDFlag` | ||
([\#1389](https://github.com/informalsystems/tendermint-rs/pull/1389)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- `[tendermint-proto]` Add missing `serde` derives on Protobuf definitions | ||
([\#1389](https://github.com/informalsystems/tendermint-rs/pull/1389)) |
6 changes: 6 additions & 0 deletions
6
.changelog/unreleased/features/1401-ed25519-consensus-from-impls.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
- `[tendermint]` Add the following impls for `ed25519-consensus`: | ||
* `From<ed25519_consensus::SigningKey` for `tendermint::PrivateKey` | ||
* `From<ed25519_consensus::SigningKey>` for `tendermint::SigningKey` | ||
* `From<ed25519_consensus::VerificationKey>` for `tendermint::PublicKey` | ||
* `From<ed25519_consensus::VerificationKey>` for `tendermint::VerificationKey` | ||
([\#1401](https://github.com/informalsystems/tendermint-rs/pull/1401)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
// Re-export according to alloc::prelude::v1 because it is not yet stabilized | ||
// https://doc.rust-lang.org/src/alloc/prelude/v1.rs.html | ||
|
||
#[allow(unused_imports)] | ||
pub use alloc::vec; | ||
#![allow(unused_imports)] | ||
|
||
pub use alloc::{ | ||
format, | ||
string::{String, ToString}, | ||
vec, | ||
vec::Vec, | ||
}; | ||
pub use core::prelude::v1::*; |
Oops, something went wrong.