From 708ada61fac776f3702c5e975c2e182c14d3f8e9 Mon Sep 17 00:00:00 2001 From: Stefan Thomas Date: Sun, 8 May 2011 14:40:42 +0100 Subject: [PATCH] Removed a debug statement. --- base58.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/base58.js b/base58.js index 4bbecca..3cf1739 100644 --- a/base58.js +++ b/base58.js @@ -12,10 +12,6 @@ * Ported to JavaScript by Stefan Thomas. */ encode: function (input) { - console.log(input); - // We prepend the input with a zero byte because the BigInteger - // implementation treats it as a negative number if any of the - // four most significant bits are set. var bi = BigInteger.fromByteArrayUnsigned(input); var chars = [];