Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:TrueBlocks/trueblocks-sdk into d…
Browse files Browse the repository at this point in the history
…evelop
  • Loading branch information
tjayrush committed Sep 6, 2024
2 parents 7e0b05c + 6ca939d commit 69d2f7c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/TrueBlocks/trueblocks-sdk/v3
// Go Version
go 1.22

require github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20240901202206-c19a76f941df
require github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20240901212707-3b0228642466

require (
github.com/Microsoft/go-winio v0.6.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migc
github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20240901202206-c19a76f941df h1:doJdR+hHIaSCI4XXK6ad+bQUCF0LnM+nz1p9SyThekA=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20240901202206-c19a76f941df/go.mod h1:YKuaek8RSyh681TFMK6Ua8MsHtuY+c1VJWi78Y35+J8=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20240901212707-3b0228642466 h1:DNH7mYWEEehKLRiFjBoiMoZJMdpuVNiLnFvsstQW2To=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20240901212707-3b0228642466/go.mod h1:YKuaek8RSyh681TFMK6Ua8MsHtuY+c1VJWi78Y35+J8=
github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw=
github.com/VictoriaMetrics/fastcache v1.12.1 h1:i0mICQuojGDL3KblA7wUNlY5lOK6a4bwt3uRKnkZU40=
github.com/VictoriaMetrics/fastcache v1.12.1/go.mod h1:tX04vaqcNoQeGLD+ra5pU5sWkuxnzWhEzLwhP9w653o=
Expand Down
2 changes: 1 addition & 1 deletion typescript/src/types/chunkAddress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ export type ChunkAddress = {
count: uint64
offset: uint64
range: blkrange
rangeDates: RangeDates
rangeDates?: RangeDates
}
2 changes: 1 addition & 1 deletion typescript/src/types/chunkBloom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export type ChunkBloom = {
nBlooms: uint64
nInserted: uint64
range: blkrange
rangeDates: RangeDates
rangeDates?: RangeDates
size: uint64
}
2 changes: 1 addition & 1 deletion typescript/src/types/chunkIndex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export type ChunkIndex = {
nAddresses: uint64
nAppearances: uint64
range: blkrange
rangeDates: RangeDates
rangeDates?: RangeDates
size: uint64
}
2 changes: 1 addition & 1 deletion typescript/src/types/chunkRecord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ export type ChunkRecord = {
indexHash: ipfshash
indexSize: int64
range: blkrange
rangeDates: RangeDates
rangeDates?: RangeDates
}
2 changes: 1 addition & 1 deletion typescript/src/types/chunkStats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type ChunkStats = {
nBlocks: uint64
nBlooms: uint64
range: blkrange
rangeDates: RangeDates
rangeDates?: RangeDates
ratio: float64
recWid: uint64
}

0 comments on commit 69d2f7c

Please sign in to comment.