fuel-core-shared-sequencer 0.48.1

The service responsible for communication with the shared sequencer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use core::fmt;

#[derive(Debug)]
pub struct PostBlobError {
    pub message: String,
}

impl fmt::Display for PostBlobError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "PostBlobError: {:?}", self.message)
    }
}

impl std::error::Error for PostBlobError {}