Fixes test. Implementation is now functional

This commit is contained in:
benbierens 2023-11-27 08:41:35 +01:00 committed by Dmitriy Ryajov
parent 26f238409c
commit 0b54ef7777
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
2 changed files with 6 additions and 3 deletions

View File

@ -169,8 +169,11 @@ asyncchecksuite "Test proof datasampler - components":
asyncchecksuite "Test proof datasampler - main":
let
numberOfSlotBlocks = 4 # 16
totalNumberOfSlots = 2 #4
# The number of slot blocks and number of slots, combined with
# the bytes per block, make it so that there are exactly 256 cells
# in the dataset.
numberOfSlotBlocks = 4
totalNumberOfSlots = 2
datasetSlotIndex = 1
localStore = CacheStore.new()

View File

@ -19,5 +19,5 @@ proc getExpectedBlockToCellProofs*(): seq[string] =
proc getExpectedSampleData*(): string =
"B2".repeat(CellSize) &
"59".repeat(CellSize) &
"95".repeat(CellSize) &
"EE".repeat(CellSize)