taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

transaction-push-credit-states.dot (1061B)


      1 digraph G {
      2 
      3   initial[label="", shape="circle", xlabel="peer-push-credit"];
      4   pending_download[label="pending(download)"];
      5   pending_user[label="dialog", shape="box"];
      6   pending_merge[label="merge"];
      7   pending_merge_kyc[label="merge-kyc"];
      8   pending_withdraw[label="withdraw"];
      9   pending_withdraw_kyc[label="withdraw-kyc"];
     10   pending_withdraw_aml[label="withdraw-aml"];
     11 
     12   subgraph {
     13     rank=same;
     14     pending_merge; pending_withdraw_kyc; pending_withdraw_aml;
     15   }
     16 
     17   done[label="done", shape="box"];
     18 
     19   initial->pending_download;
     20 
     21   pending_download->pending_user [color=green];
     22 
     23   pending_user->pending_merge [color="blue", label="OK"];
     24 
     25   pending_merge->pending_withdraw [color=green];
     26   pending_merge->pending_merge_kyc [color=red];
     27 
     28   pending_merge_kyc->pending_merge [color="green"];
     29 
     30   pending_withdraw->pending_withdraw_kyc [color=red];
     31   pending_withdraw->pending_withdraw_aml [color=red];
     32   pending_withdraw->done [color=green];
     33 
     34   pending_withdraw_kyc->pending_withdraw [color="green"];
     35 
     36   pending_withdraw_aml->pending_withdraw [color="green"];
     37 }