Skip to content

Commit

Permalink
Fix graphs in report
Browse files Browse the repository at this point in the history
  • Loading branch information
uhbif19 committed Apr 18, 2024
1 parent edf97a1 commit 3f0ca87
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions docs/catalyst_milestone_reports.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ Changes:

## State graph examples

```graphviz
![](./auction-state-graph.png)


Source code:

```
digraph Creator {
rankdir=LR;
node [shape="dot",fontsize=14,fixedsize=true,width=1.5];
Expand All @@ -20,13 +25,3 @@ CurrentBid -> Winner [label="Close (stage Closed)"];
Winner -> "Void Out" [label="Buyout (stage Closed)"];
}
```

```graphviz
digraph Creator {
rankdir=LR;
node [shape="dot",fontsize=14,fixedsize=true,width=1.5];
edge [fontsize=11];"Void In" [color="orange"];"Void Out" [color="orange"];"Void In" -> Spawning [label="Create (stage Always)"];
Spawning -> Spawning [label="Spawn (stage Always)"];
Spawning -> "Void Out" [label="Finalize (stage Always)"];
}
```

0 comments on commit 3f0ca87

Please sign in to comment.