dg_xch_core 2.1.1

Core library containing type/error definitions, CLVM tools, Consensus and Pool definitions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use dg_xch_macros::ChiaSerial;
use serde::{Deserialize, Serialize};

#[derive(ChiaSerial, Copy, Clone, PartialEq, Eq, Serialize, Deserialize, Debug)]
pub enum TXStatus {
    SUCCESS = 1,
    PENDING = 2,
    FAILED = 3,
}
impl From<u8> for TXStatus {
    fn from(value: u8) -> Self {
        match value {
            1 => TXStatus::SUCCESS,
            2 => TXStatus::PENDING,
            _ => TXStatus::FAILED,
        }
    }
}