Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
#nullable enable |
|
2 |
using Libplanet.Blocks; |
|
3 |
|
|
4 |
namespace Libplanet.Net |
|
5 |
{
|
|
6 |
internal readonly struct BlockHashDemand |
|
7 |
{
|
|
8 |
public readonly BlockHeader Header; |
|
9 |
|
|
10 |
public readonly BoundPeer Peer; |
|
11 |
|
|
12 |
public BlockHashDemand(BlockHeader header, BoundPeer peer) |
|
13 | 1 |
{
|
14 | 1 |
Header = header; |
15 | 1 |
Peer = peer; |
16 | 1 |
}
|
17 |
}
|
|
18 |
}
|
Read our documentation on viewing source code .