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
use crate::{
common::{
fuel_tx::{
TxId,
UtxoId,
ValidationError,
},
fuel_types::{
Bytes32,
ContractId,
MessageId,
},
fuel_vm::backtrace::Backtrace,
},
db::KvStoreError,
model::FuelBlock,
};
use async_trait::async_trait;
use std::error::Error as StdError;
use thiserror::Error;
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ExecutionMode {
Production,
#[allow(dead_code)]
Validation,
}
#[async_trait]
pub trait Executor: Sync + Send {
async fn execute(
&self,
block: &mut FuelBlock,
mode: ExecutionMode,
) -> Result<(), Error>;
}
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum TransactionValidityError {
#[error("Coin input was already spent")]
CoinAlreadySpent(UtxoId),
#[error("Coin has not yet reached maturity")]
CoinHasNotMatured(UtxoId),
#[error("The specified coin doesn't exist")]
CoinDoesNotExist(UtxoId),
#[error("The specified message was already spent")]
MessageAlreadySpent(MessageId),
#[error(
"Message is not yet spendable, as it's DA height is newer than this block allows"
)]
MessageSpendTooEarly(MessageId),
#[error("The specified message doesn't exist")]
MessageDoesNotExist(MessageId),
#[error("Contract output index isn't valid: {0:#x}")]
InvalidContractInputIndex(UtxoId),
#[error("The transaction must have at least one coin or message input type: {0:#x}")]
NoCoinOrMessageInput(TxId),
#[error("The transaction contains predicate inputs which aren't enabled: {0:#x}")]
PredicateExecutionDisabled(TxId),
#[error(
"The transaction contains a predicate which failed to validate: TransactionId({0:#x})"
)]
InvalidPredicate(TxId),
#[error("Transaction validity: {0:#?}")]
Validation(#[from] ValidationError),
#[error("Datastore error occurred")]
DataStoreError(Box<dyn StdError + Send + Sync>),
}
impl From<KvStoreError> for TransactionValidityError {
fn from(e: KvStoreError) -> Self {
Self::DataStoreError(Box::new(e))
}
}
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum Error {
#[error("Transaction id was already used: {0:#x}")]
TransactionIdCollision(Bytes32),
#[error("output already exists")]
OutputAlreadyExists,
#[error("The computed fee caused an integer overflow")]
FeeOverflow,
#[error("Invalid transaction: {0}")]
TransactionValidity(#[from] TransactionValidityError),
#[error("corrupted block state")]
CorruptedBlockState(Box<dyn StdError + Send + Sync>),
#[error("Transaction({transaction_id:#x}) execution error: {error:?}")]
VmExecution {
error: fuel_vm::prelude::InterpreterError,
transaction_id: Bytes32,
},
#[error(transparent)]
InvalidTransaction(#[from] ValidationError),
#[error("Execution error with backtrace")]
Backtrace(Box<Backtrace>),
#[error("Transaction doesn't match expected result: {transaction_id:#x}")]
InvalidTransactionOutcome { transaction_id: Bytes32 },
#[error("Transaction root is invalid")]
InvalidTransactionRoot,
#[error("The amount of charged fees is invalid")]
InvalidFeeAmount,
#[error("Block id is invalid")]
InvalidBlockId,
#[error("No matching utxo for contract id ${0:#x}")]
ContractUtxoMissing(ContractId),
}
impl From<Backtrace> for Error {
fn from(e: Backtrace) -> Self {
Error::Backtrace(Box::new(e))
}
}
impl From<KvStoreError> for Error {
fn from(e: KvStoreError) -> Self {
Error::CorruptedBlockState(Box::new(e))
}
}
impl From<crate::db::Error> for Error {
fn from(e: crate::db::Error) -> Self {
Error::CorruptedBlockState(Box::new(e))
}
}