Initial (non-functional) code.

- Kill Externalities Error type requirement.
This commit is contained in:
Gav
2018-01-23 17:27:43 +01:00
parent 68bdf72de7
commit 8ca5c09961
10 changed files with 72 additions and 30 deletions
+2 -3
View File
@@ -17,7 +17,6 @@
//! Rust executor possible errors.
use serializer;
use state_machine;
error_chain! {
foreign_links {
@@ -38,9 +37,9 @@ error_chain! {
}
/// Externalities have failed.
Externalities(e: Box<state_machine::Error>) {
Externalities {
description("externalities failure"),
display("Externalities error: {}", e),
display("Externalities error"),
}
/// Invalid index.