mirror of
https://github.com/seigler/dips
synced 2025-07-27 01:36:14 +00:00
swap vector type with generic list symbols (#27)
This commit is contained in:
parent
52aee60048
commit
19c4993976
2 changed files with 6 additions and 6 deletions
|
@ -108,12 +108,12 @@ The `MNLISTDIFF` message contains a serialized object with the following structu
|
|||
| blockHash | uint256 | 32 | Hash of the block for which the masternode list diff is returned |
|
||||
| totalTransactions | uint32_t | 4 | Number of total transactions in blockHash |
|
||||
| merkleHashesCount | compactSize uint | 1-9 | Number of Merkle hashes |
|
||||
| merkleHashes | vector<uint256> | variable | Merkle hashes in depth-first order |
|
||||
| merkleHashes | uint256[] | variable | Merkle hashes in depth-first order |
|
||||
| merkleFlagsCount | compactSize uint | 1-9 | Number of Merkle flag bytes |
|
||||
| merkleFlags | vector<uint8_t> | variable | Merkle flag bits, packed per 8 in a byte, least significant bit first |
|
||||
| merkleFlags | uint8_t[] | variable | Merkle flag bits, packed per 8 in a byte, least significant bit first |
|
||||
| cbTx | CTransaction | variable | The fully serialized coinbase transaction of blockHash |
|
||||
| deletedMNs | vector<uint256> | variable | A list of ProRegTx hashes for masternode which were deleted after baseBlockHash |
|
||||
| mnList | vector<SMLEntry> | variable | The list of SML entries which were added or updated since baseBlockHash |
|
||||
| deletedMNs | uint256[] | variable | A list of ProRegTx hashes for masternode which were deleted after baseBlockHash |
|
||||
| mnList | SMLEntry[] | variable | The list of SML entries which were added or updated since baseBlockHash |
|
||||
|
||||
## Tracking/Updating and verifying masternode lists based on MNLISTDIFF
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue