remove leftover debugEcho

This commit is contained in:
Mamy André-Ratsimbazafy 2020-02-23 17:12:41 +01:00
parent 05009f9407
commit 5f91751328
No known key found for this signature in database
GPG Key ID: 7B88AD1FE79492E1
1 changed files with 0 additions and 1 deletions

View File

@ -260,7 +260,6 @@ func exportRawUintBE(
# When requesting little-endian on little-endian platform
# we can just copy each byte
# tail is inclusive
debugEcho "tail: "
for i in 0 ..< tail:
dst[tail-1-i] = toByte(lo shr (i*8))
else: # TODO check this