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
use fuel_tx::Transaction;
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde-types", derive(serde::Serialize, serde::Deserialize))]
pub enum Context {
Predicate,
Script,
Call,
NotInitialized,
}
impl Default for Context {
fn default() -> Self {
Self::NotInitialized
}
}
impl Context {
pub const fn is_external(&self) -> bool {
matches!(self, Self::Predicate | Self::Script)
}
}
impl From<&Transaction> for Context {
fn from(tx: &Transaction) -> Self {
if tx.is_script() {
Self::Script
} else {
Self::Predicate
}
}
}