diff --git a/src/bitcoin_validator.js b/src/bitcoin_validator.js index 37614b02..0b9a38bb 100644 --- a/src/bitcoin_validator.js +++ b/src/bitcoin_validator.js @@ -25,7 +25,6 @@ function getChecksum(hashFunction, payload) { case 'keccak256': return cryptoUtils.keccak256Checksum(payload); case 'groestl512x2': - console.log("Using " + hashFunction + " on " + payload); return cryptoUtils.groestl512x2(payload); case 'sha256': default: @@ -57,7 +56,6 @@ function getAddressType(address, currency) { body = cryptoUtils.toHex(decoded.slice(0, length - 4)), goodChecksum = getChecksum(hashFunction, body); - console.log("Found checksum = " + checksum); return checksum === goodChecksum ? cryptoUtils.toHex(decoded.slice(0, expectedLength - 24)) : null; }