mirror of https://github.com/status-im/nim-eth.git
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:
parent
6272eaa6cd
commit
3d78c66119
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue