From 5f9175132845166f374fb02bbfa872dbd3bcfee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mamy=20Andr=C3=A9-Ratsimbazafy?= Date: Sun, 23 Feb 2020 17:12:41 +0100 Subject: [PATCH] remove leftover debugEcho --- constantine/io/io_bigints.nim | 1 - 1 file changed, 1 deletion(-) diff --git a/constantine/io/io_bigints.nim b/constantine/io/io_bigints.nim index 83bad0e..ba93e3a 100644 --- a/constantine/io/io_bigints.nim +++ b/constantine/io/io_bigints.nim @@ -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