| 62 | |
| 63 | #[derive(Debug)] |
| 64 | pub enum Error { |
| 65 | Esplora(esplora_client::Error), |
| 66 | Client(ClientError), |
| 67 | Graph(GraphError), |
| 68 | Transaction(TransactionError), |
| 69 | L2(L2Error), |
| 70 | Chunker(ChunkerError), |
| 71 | Validation(ValidationError), |
| 72 | Other(String), |
| 73 | } |
| 74 | |
| 75 | impl fmt::Display for Error { |
| 76 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected