fix compile error due to cyrillic T (#411)

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 14:21:06 +02:00 committed by GitHub
parent 6272eaa6cd
commit 3d78c66119
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -469,9 +469,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