-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3878 from TrueBlocks/feature/better-manifests
Feature/better manifests
- Loading branch information
Showing
22 changed files
with
155 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,5 @@ | ||
## Description | ||
<!-- Please include a summary of the change and which issue is fixed. --> | ||
|
||
## Type of change | ||
- [ ] Bug fix (non-breaking change which fixes an issue -- include the issue #) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Other (please specify): | ||
|
||
## Checklist | ||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have performed a self-review of my own code | ||
- [ ] I have added minimal comments to my code in difficult to understand areas | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] New and existing unit tests pass locally with my changes | ||
- [ ] Any dependent changes have been merged and published in downstream modules | ||
|
||
## PR Target Branch | ||
- [ ] I am targeting the `develop` branch for non-release changes. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule sdk
updated
7 files
+1 −1 | go.mod | |
+2 −2 | go.sum | |
+1 −1 | typescript/src/types/chunkAddress.ts | |
+1 −1 | typescript/src/types/chunkBloom.ts | |
+1 −1 | typescript/src/types/chunkIndex.ts | |
+1 −1 | typescript/src/types/chunkRecord.ts | |
+1 −1 | typescript/src/types/chunkStats.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
src/dev_tools/goMaker/templates/classDefinitions/fields/chunkaddress.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name ,type ,strDefault ,attributes ,docOrder ,description | ||
address ,address , , , 1 ,the address in this record | ||
range ,blkrange , , , 2 ,the block range of the chunk from which this address record was taken | ||
offset ,uint64 , , , 3 ,the offset into the appearance table of the first record for this address | ||
count ,uint64 , , , 4 ,the number of records in teh appearance table for this address | ||
rangeDates ,RangeDates , , , 5 ,if verbose, the block and timestamp bounds of the chunk | ||
name ,type ,strDefault ,attributes ,docOrder ,description | ||
address ,address , , , 1 ,the address in this record | ||
range ,blkrange , , , 2 ,the block range of the chunk from which this address record was taken | ||
offset ,uint64 , , , 3 ,the offset into the appearance table of the first record for this address | ||
count ,uint64 , , , 4 ,the number of records in teh appearance table for this address | ||
rangeDates ,*RangeDates , ,omitempty , 5 ,if verbose, the block and timestamp bounds of the chunk (may be null) |
18 changes: 9 additions & 9 deletions
18
src/dev_tools/goMaker/templates/classDefinitions/fields/chunkbloom.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name ,type ,strDefault ,attributes ,docOrder ,description | ||
range ,blkrange , , , 1 ,the block range (inclusive) covered by this chunk | ||
magic ,string , , , 2 ,an internal use only magic number to indicate file format | ||
hash ,hash , , , 3 ,the hash of the specification under which this chunk was generated | ||
nBlooms ,uint64 , , , 4 ,the number of individual bloom filters in this bloom file | ||
nInserted ,uint64 , , , 5 ,the number of addresses inserted into the bloom file | ||
size ,uint64 , , , 6 ,the size on disc in bytes of this bloom file | ||
byteWidth ,uint64 , , , 7 ,the width of the bloom filter | ||
rangeDates ,RangeDates , , , 8 ,if verbose, the block and timestamp bounds of the chunk | ||
name ,type ,strDefault ,attributes ,docOrder ,description | ||
range ,blkrange , , , 1 ,the block range (inclusive) covered by this chunk | ||
magic ,string , , , 2 ,an internal use only magic number to indicate file format | ||
hash ,hash , , , 3 ,the hash of the specification under which this chunk was generated | ||
nBlooms ,uint64 , , , 4 ,the number of individual bloom filters in this bloom file | ||
nInserted ,uint64 , , , 5 ,the number of addresses inserted into the bloom file | ||
size ,uint64 , , , 6 ,the size on disc in bytes of this bloom file | ||
byteWidth ,uint64 , , , 7 ,the width of the bloom filter | ||
rangeDates ,*RangeDates , ,omitempty , 8 ,if verbose, the block and timestamp bounds of the chunk (may be null) |
16 changes: 8 additions & 8 deletions
16
src/dev_tools/goMaker/templates/classDefinitions/fields/chunkindex.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
name ,type ,strDefault ,attributes ,docOrder ,description | ||
range ,blkrange , , , 1 ,the block range (inclusive) covered by this chunk | ||
magic ,string , , , 2 ,an internal use only magic number to indicate file format | ||
hash ,hash , , , 3 ,the hash of the specification under which this chunk was generated | ||
nAddresses ,uint64 , , , 4 ,the number of addresses in this chunk | ||
nAppearances ,uint64 , , , 5 ,the number of appearances in this chunk | ||
size ,uint64 , , , 6 ,the size of the chunk in bytes | ||
rangeDates ,RangeDates , , , 7 ,if verbose, the block and timestamp bounds of the chunk | ||
name ,type ,strDefault ,attributes ,docOrder ,description | ||
range ,blkrange , , , 1 ,the block range (inclusive) covered by this chunk | ||
magic ,string , , , 2 ,an internal use only magic number to indicate file format | ||
hash ,hash , , , 3 ,the hash of the specification under which this chunk was generated | ||
nAddresses ,uint64 , , , 4 ,the number of addresses in this chunk | ||
nAppearances ,uint64 , , , 5 ,the number of appearances in this chunk | ||
size ,uint64 , , , 6 ,the size of the chunk in bytes | ||
rangeDates ,*RangeDates , ,omitempty , 7 ,if verbose, the block and timestamp bounds of the chunk (may be null) |
Oops, something went wrong.