This commit is contained in:
Dimitris Apostolou 2024-01-05 12:44:57 +02:00
parent 28319ffc38
commit 652c393896
No known key found for this signature in database
GPG Key ID: 4B5D20E938204A8A
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ pub enum Error {
impl fmt::Display for Error { impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match &self { match &self {
Error::Serialization(err) => write!(f, "Commitment tree serializtion error: {}", err), Error::Serialization(err) => write!(f, "Commitment tree serialization error: {}", err),
Error::Query(err) => write!(f, "Commitment tree query or update error: {}", err), Error::Query(err) => write!(f, "Commitment tree query or update error: {}", err),
Error::CheckpointConflict { Error::CheckpointConflict {
checkpoint_id, checkpoint_id,
@ -68,7 +68,7 @@ impl fmt::Display for Error {
} => { } => {
write!( write!(
f, f,
"Attempted to write subtree roots with indicies {:?} which is discontinuous with existing subtree range {:?}", "Attempted to write subtree roots with indices {:?} which is discontinuous with existing subtree range {:?}",
attempted_insertion_range, existing_range, attempted_insertion_range, existing_range,
) )
} }