mirror of
https://github.com/lightninglabs/loop
synced 2024-11-13 13:10:30 +00:00
12 lines
266 B
Markdown
12 lines
266 B
Markdown
|
```mermaid
|
||
|
stateDiagram-v2
|
||
|
[*] --> InitFSM: OnRequestStuff
|
||
|
InitFSM
|
||
|
InitFSM --> StuffFailed: OnError
|
||
|
InitFSM --> StuffSentOut: OnStuffSentOut
|
||
|
StuffFailed
|
||
|
StuffSentOut
|
||
|
StuffSentOut --> StuffFailed: OnError
|
||
|
StuffSentOut --> StuffSuccess: OnStuffSuccess
|
||
|
StuffSuccess
|
||
|
```
|