chore: use correct error message (#13587)

This commit is contained in:
Gengar
2024-12-29 13:28:48 +02:00
committed by GitHub
parent bcfaad2ed4
commit e2abcc8b8f

View File

@ -73,7 +73,7 @@ pub enum CanonicalError {
#[error("transaction error on commit: {0}")]
CanonicalCommit(String),
/// Error indicating that a previous optimistic sync target was re-orged
#[error("transaction error on revert: {0}")]
#[error("optimistic sync target was re-orged at block: {0}")]
OptimisticTargetRevert(BlockNumber),
}