aboutsummaryrefslogtreecommitdiff
path: root/transaction-refund-states.dot
blob: 3d42112690491559b40e98fa6446251796cc92b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
digraph G {

  initial[label="", shape="circle", xlabel="refund"];
  pending_merchant[label="pending(merchant)"];
  pending_re[label="pending(refresh)"];
  done[label="done", shape="box"];
  failed[label="failed", shape="box"];

  initial->pending_merchant;

  pending_merchant->pending_re;
  pending_merchant->failed;
  
  pending_re->done;
}