mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-11 06:46:10 +00:00
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:
parent
c0a2f1c98e
commit
074270fc9a
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user