5 Commits

Author SHA1 Message Date
Al-Kindi-0
ef9373d444 exp: add derives 2024-11-25 09:14:01 +01:00
Al-Kindi-0
5412b6f4fb chore: revert derive changes 2024-11-25 07:14:46 +01:00
Al-Kindi-0
92aee341cc chore: update changelog 2024-11-25 07:08:41 +01:00
Al-Kindi-0
adfe493f1d chore: add derives 2024-11-25 06:19:01 +01:00
Al-Kindi-0
4b606c45d0 chore: update to winter 0.11 2024-11-25 06:03:05 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
## 0.13.0 (2024-11-24) ## 0.13.0 (TBD)
- Fixed a bug in the implementation of `draw_integers` for `RpoRandomCoin` (#343). - Fixed a bug in the implementation of `draw_integers` for `RpoRandomCoin` (#343).
- [BREAKING] Refactor error messages and use `thiserror` to derive errors (#344). - [BREAKING] Refactor error messages and use `thiserror` to derive errors (#344).

View File

@@ -2,7 +2,7 @@ use thiserror::Error;
use super::{NodeIndex, RpoDigest}; use super::{NodeIndex, RpoDigest};
#[derive(Debug, Error)] #[derive(Clone, Debug, Error, Eq, PartialEq)]
pub enum MerkleError { pub enum MerkleError {
#[error("expected merkle root {expected_root} found {actual_root}")] #[error("expected merkle root {expected_root} found {actual_root}")]
ConflictingRoots { ConflictingRoots {