diff --git a/www/js/vendor/base58.js b/www/js/vendor/base58.js index 906362e4de9213ac1ae4f479c9e46b1c9f9785f6..77d70031070e790b286b7af0822b289cb41121aa 100644 --- a/www/js/vendor/base58.js +++ b/www/js/vendor/base58.js @@ -61,6 +61,7 @@ while (i < string.length) { c = string[i]; if (!(c in Base58.alphabetMap)) { + console.error("Base58.decode received unacceptable input. Character '" + c + "' is not in the Base58 alphabet."); throw "Base58.decode received unacceptable input. Character '" + c + "' is not in the Base58 alphabet."; } j = 0;