1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-12-23 15:18:11 +00:00
bitcoinbook/images/race1.dot
David A. Harding 9142816196 CH10: add compact block relay & update relay networks
- Describe BIP152 compact block relay
- Describe why we still need relay networks (what they do that BIP152
  can't)
- Drop FALCON relay (never used, AFAIK)
- Minor updates to relay section
2023-05-18 15:55:38 -10:00

38 lines
544 B
Plaintext

digraph blockchain {
rankdir=LR; // Flow from left to right
node [shape=box, width=0.3, height=0.3];
A [label=""];
B [label=""];
C [label=""];
C1 [label=""];
D [label="?", style=dashed];
D1 [label="?", style=dashed];
A -> B;
B -> C;
B -> C1;
C -> D [style=dashed];
C1 -> D1 [style=dashed];
{
rank=same;
A;
}
{
rank=same;
B;
}
{
rank=same;
C;
C1;
}
{
rank=same;
D;
D1;
}
}