mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
25 lines
602 B
Text
25 lines
602 B
Text
digraph {
|
|
|
|
size=6.25;
|
|
rankdir=LR
|
|
node [ shape = "box" ]
|
|
splines = ortho;
|
|
//ranksep = 10;
|
|
nodesep = 0.5;
|
|
|
|
p2pnetwork [ label = "P2P\nNetwork" ]
|
|
asic0 [ label = "ASIC" ];
|
|
software [ label = "Mining\nSoftware" ]
|
|
pool0 [ label = "dashd" ];
|
|
|
|
pool0 -> software [ label = "Block\nTemplate→" ];
|
|
p2pnetwork -> pool0 [ label = "TXes→" ];
|
|
pool0 -> p2pnetwork [ label = "←Blocks" ];
|
|
|
|
software -> asic0 [ label = "Block\nHeaders &\nTargets→" ];
|
|
asic0 -> software [ label = "←Headers\nBelow\nTarget" ];
|
|
|
|
software -> pool0 [ constraint = false, label = "←Blocks" ];
|
|
|
|
label = "Solo Dash Mining Workflow"
|
|
}
|