Skip to content
Snippets Groups Projects
Commit 6edf23d1 authored by Luke Schoen's avatar Luke Schoen Committed by Bastian Köcher
Browse files

refactor: Fixes #1083. Rename ApplyExtrinsicFailed method without typo (#1084)

parent 3acafa9d
No related merge requests found
......@@ -103,7 +103,7 @@ where
}
Err(e) => {
self.changes.discard_prospective();
Err(error::ErrorKind::ApplyExtinsicFailed(e).into())
Err(error::ErrorKind::ApplyExtrinsicFailed(e).into())
}
}
}
......
......@@ -41,7 +41,7 @@ error_chain! {
}
/// Applying extrinsic error.
ApplyExtinsicFailed(e: ApplyError) {
ApplyExtrinsicFailed(e: ApplyError) {
description("Extrinsic error"),
display("Extrinsic error: {:?}", e),
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment