From d4d97795cae1516dbc11c23b82dc8b2c37fc4d42 Mon Sep 17 00:00:00 2001 From: dapplion Date: Thu, 3 Dec 2020 00:05:14 +0000 Subject: [PATCH] Remove comment --- src/helpers/hex.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/helpers/hex.ts b/src/helpers/hex.ts index 9470cb8..2ba1236 100644 --- a/src/helpers/hex.ts +++ b/src/helpers/hex.ts @@ -26,7 +26,6 @@ export function hexToBytes(hex: string): Uint8Array { * From https://github.com/herumi/bls-eth-wasm/blob/04eedb77aa96e66b4f65a0ab477228adf8090c36/src/bls.js#L50 */ export function bytesToHex(bytes: Uint8Array): string { - // return "0x" + Buffer.from(bytes).toString("hex"); let s = ""; const n = bytes.length;