mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-10 05:33:40 +01:00
Fix typos in lightning-transaction-sync
This commit is contained in:
parent
b5e5435c4e
commit
53788913c9
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ impl fmt::Display for TxSyncError {
|
||||||
pub(crate) enum InternalError {
|
pub(crate) enum InternalError {
|
||||||
/// A transaction sync failed and needs to be retried eventually.
|
/// A transaction sync failed and needs to be retried eventually.
|
||||||
Failed,
|
Failed,
|
||||||
/// An inconsisteny was encounterd during transaction sync.
|
/// An inconsistency was encountered during transaction sync.
|
||||||
Inconsistency,
|
Inconsistency,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ impl fmt::Display for InternalError {
|
||||||
match *self {
|
match *self {
|
||||||
Self::Failed => write!(f, "Failed to conduct transaction sync."),
|
Self::Failed => write!(f, "Failed to conduct transaction sync."),
|
||||||
Self::Inconsistency => {
|
Self::Inconsistency => {
|
||||||
write!(f, "Encountered an inconsisteny during transaction sync.")
|
write!(f, "Encountered an inconsistency during transaction sync.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue