fix compile error due to cyrillic T

There was a cyrillic T in some big-endian specific code that broke the
compilation on such platforms. This replaces that T with an ASCII T to
fix the build.
This commit is contained in:
Etan Kissling 2021-10-20 12:37:40 +02:00 committed by zah
parent c0a2f1c98e
commit 074270fc9a

View File

@ -447,9 +447,9 @@ func chunkedHashTreeRootForBasicTypes[T](merkleizer: var SszMerkleizerImpl,
else:
static:
doAssert T is UintN
doAssert bytesPerChunk mod sizeof(Т) == 0
doAssert bytesPerChunk mod sizeof(T) == 0
const valuesPerChunk = bytesPerChunk div sizeof(Т)
const valuesPerChunk = bytesPerChunk div sizeof(T)
var writtenValues = 0