mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-09 21:23:34 +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 {
|
||||
/// A transaction sync failed and needs to be retried eventually.
|
||||
Failed,
|
||||
/// An inconsisteny was encounterd during transaction sync.
|
||||
/// An inconsistency was encountered during transaction sync.
|
||||
Inconsistency,
|
||||
}
|
||||
|
||||
|
@ -32,7 +32,7 @@ impl fmt::Display for InternalError {
|
|||
match *self {
|
||||
Self::Failed => write!(f, "Failed to conduct transaction sync."),
|
||||
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