1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
use sp_version::RuntimeVersion;
use sp_core::ed25519::Public;
use std::error;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
#[error("State unavailable at block {0}")]
StateUnavailable(String),
#[error("I/O terminated unexpectedly.")]
IoTerminated,
#[error("Missing intermediate.")]
NoIntermediate,
#[error("Invalid intermediate.")]
InvalidIntermediate,
#[error("Timer error: {0}")]
FaultyTimer(#[from] std::io::Error),
#[error("InherentData error: {0}")]
InherentData(#[from] sp_inherents::Error),
#[error("Unable to create block proposal.")]
CannotPropose,
#[error("Message signature {0:?} by {1:?} is invalid.")]
InvalidSignature(Vec<u8>, Vec<u8>),
#[error("Current state of blockchain has invalid authorities set")]
InvalidAuthoritiesSet,
#[error("Message sender {0:?} is not a valid authority")]
InvalidAuthority(Public),
#[error("Authoring for current \
runtime is not supported. Native ({native}) cannot author for on-chain ({on_chain}).")]
IncompatibleAuthoringRuntime { native: RuntimeVersion, on_chain: RuntimeVersion },
#[error("Authoring for current runtime is not supported since it has no version.")]
RuntimeVersionMissing,
#[error("Authoring in current build is not supported since it has no runtime.")]
NativeRuntimeMissing,
#[error("Invalid justification.")]
InvalidJustification,
#[error(transparent)]
Other(#[from] Box<dyn error::Error + Sync + Send + 'static>),
#[error("Import failed: {0}")]
ClientImport(String),
#[error("Chain lookup failed: {0}")]
ChainLookup(String),
#[error("Failed to sign using key: {0:?}. Reason: {1}")]
CannotSign(Vec<u8>, String)
}
impl core::convert::From<Public> for Error {
fn from(p: Public) -> Self {
Self::InvalidAuthority(p)
}
}
impl core::convert::From<String> for Error {
fn from(s: String) -> Self {
Self::StateUnavailable(s)
}
}