From 5f7fb03cf2096b69f2fc6097e54c14edd0b5a5ed Mon Sep 17 00:00:00 2001 From: andri lim Date: Thu, 22 Aug 2019 09:59:35 +0700 Subject: [PATCH] fix SszChunkMerkelizer 32bit failure --- beacon_chain/ssz.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_chain/ssz.nim b/beacon_chain/ssz.nim index 3337009d7..ad4486942 100644 --- a/beacon_chain/ssz.nim +++ b/beacon_chain/ssz.nim @@ -43,7 +43,7 @@ type SszChunksMerkelizer = ref object of RootObj combinedChunks: array[maxChunkTreeDepth, Eth2Digest] - totalChunks: uint + totalChunks: uint64 limit: uint64 Chunk = array[bytesPerChunk, byte]