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