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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
use bytes::Bytes;
use ethereum_types::{Address, U256, U512};
use ethtrie;
use trace::{FlatTrace, VMTrace};
use types::{log_entry::LogEntry, state_diff::StateDiff};
use vm;
use std::{error, fmt};
#[derive(Debug, PartialEq, Clone)]
pub struct Executed<T = FlatTrace, V = VMTrace> {
pub exception: Option<vm::Error>,
pub gas: U256,
pub gas_used: U256,
pub refunded: U256,
pub cumulative_gas_used: U256,
pub logs: Vec<LogEntry>,
pub contracts_created: Vec<Address>,
pub output: Bytes,
pub trace: Vec<T>,
pub vm_trace: Option<V>,
pub state_diff: Option<StateDiff>,
}
#[derive(PartialEq, Debug, Clone)]
pub enum ExecutionError {
NotEnoughBaseGas {
required: U256,
got: U256,
},
BlockGasLimitReached {
gas_limit: U256,
gas_used: U256,
gas: U256,
},
GasPriceLowerThanBaseFee {
gas_price: U256,
base_fee: U256,
},
InvalidNonce {
expected: U256,
got: U256,
},
NotEnoughCash {
required: U512,
got: U512,
},
MutableCallInStaticContext,
SenderMustExist,
Internal(String),
TransactionMalformed(String),
}
impl From<Box<ethtrie::TrieError>> for ExecutionError {
fn from(err: Box<ethtrie::TrieError>) -> Self {
ExecutionError::Internal(format!("{:?}", err))
}
}
impl From<ethtrie::TrieError> for ExecutionError {
fn from(err: ethtrie::TrieError) -> Self {
ExecutionError::Internal(format!("{:?}", err))
}
}
impl fmt::Display for ExecutionError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use self::ExecutionError::*;
let msg = match *self {
NotEnoughBaseGas {
ref required,
ref got,
} => format!(
"Not enough base gas. {} is required, but only {} paid",
required, got
),
BlockGasLimitReached {
ref gas_limit,
ref gas_used,
ref gas,
} => format!(
"Block gas limit reached. The limit is {}, {} has \
already been used, and {} more is required",
gas_limit, gas_used, gas
),
GasPriceLowerThanBaseFee {
ref gas_price,
ref base_fee,
} => format!(
"Max gas price is lowert than block base fee. Gas price is {}, while base fee is {}",
gas_price, base_fee
),
InvalidNonce {
ref expected,
ref got,
} => format!(
"Invalid transaction nonce: expected {}, found {}",
expected, got
),
NotEnoughCash {
ref required,
ref got,
} => format!(
"Cost of transaction exceeds sender balance. {} is required \
but the sender only has {}",
required, got
),
MutableCallInStaticContext => "Mutable Call in static context".to_owned(),
SenderMustExist => "Transacting from an empty account".to_owned(),
Internal(ref msg) => msg.clone(),
TransactionMalformed(ref err) => format!("Malformed transaction: {}", err),
};
f.write_fmt(format_args!("Transaction execution error ({}).", msg))
}
}
impl error::Error for ExecutionError {
fn description(&self) -> &str {
"Transaction execution error"
}
}
#[derive(PartialEq, Debug, Clone)]
pub enum CallError {
TransactionNotFound,
StatePruned,
Exceptional(vm::Error),
StateCorrupt,
Execution(ExecutionError),
}
impl From<ExecutionError> for CallError {
fn from(error: ExecutionError) -> Self {
CallError::Execution(error)
}
}
impl fmt::Display for CallError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use self::CallError::*;
let msg = match *self {
TransactionNotFound => "Transaction couldn't be found in the chain".into(),
StatePruned => "Couldn't find the transaction block's state in the chain".into(),
Exceptional(ref e) => format!("An exception ({}) happened in the execution", e),
StateCorrupt => "Stored state found to be corrupted.".into(),
Execution(ref e) => format!("{}", e),
};
f.write_fmt(format_args!("Transaction execution error ({}).", msg))
}
}
pub type ExecutionResult = Result<Box<Executed>, ExecutionError>;