| 32 | |
| 33 | #[derive(Debug)] |
| 34 | pub enum GraphError { |
| 35 | PrecedingTxNotCreated(&'static str), |
| 36 | PrecedingTxNotConfirmed(Vec<NamedTx>), |
| 37 | PrecedingTxTimelockNotMet(NamedTx), |
| 38 | WitnessNotGenerated(CommitmentMessageId), |
| 39 | } |
| 40 | |
| 41 | #[derive(Debug)] |
| 42 | pub enum TransactionError { |
nothing calls this directly
no outgoing calls
no test coverage detected