mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
12 lines
No EOL
266 B
Markdown
12 lines
No EOL
266 B
Markdown
```mermaid
|
|
stateDiagram-v2
|
|
[*] --> InitFSM: OnRequestStuff
|
|
InitFSM
|
|
InitFSM --> StuffFailed: OnError
|
|
InitFSM --> StuffSentOut: OnStuffSentOut
|
|
StuffFailed
|
|
StuffSentOut
|
|
StuffSentOut --> StuffFailed: OnError
|
|
StuffSentOut --> StuffSuccess: OnStuffSuccess
|
|
StuffSuccess
|
|
``` |