We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 41bcd68 + 5378891 commit 06f09eeCopy full SHA for 06f09ee
lightning-transaction-sync/src/error.rs
@@ -22,7 +22,7 @@ impl fmt::Display for TxSyncError {
22
pub(crate) enum InternalError {
23
/// A transaction sync failed and needs to be retried eventually.
24
Failed,
25
- /// An inconsisteny was encounterd during transaction sync.
+ /// An inconsistency was encountered during transaction sync.
26
Inconsistency,
27
}
28
@@ -32,7 +32,7 @@ impl fmt::Display for InternalError {
32
match *self {
33
Self::Failed => write!(f, "Failed to conduct transaction sync."),
34
Self::Inconsistency => {
35
- write!(f, "Encountered an inconsisteny during transaction sync.")
+ write!(f, "Encountered an inconsistency during transaction sync.")
36
37
38
0 commit comments