From 57d26950b9e4835090f153e81f4d90e4f534380f Mon Sep 17 00:00:00 2001 From: booo Date: Wed, 28 Dec 2011 13:47:55 +0100 Subject: [PATCH] src/wallet.js: remove console.log statements --- src/wallet.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/wallet.js b/src/wallet.js index 31c8747..379e54c 100755 --- a/src/wallet.js +++ b/src/wallet.js @@ -38,7 +38,6 @@ Bitcoin.Wallet = (function () { if ("string" === typeof pubs) { pubs = pubs.split(','); } - console.log(pubs); if (Array.isArray(pubs) && keys.length == pubs.length) { for (var i = 0; i < keys.length; i++) { this.addKey(keys[i], pubs[i]); @@ -118,7 +117,6 @@ Bitcoin.Wallet = (function () { pubKeyHash = Crypto.util.bytesToBase64(pubKeyHash); for (var i = 0; i < this.addressHashes.length; i++) { if (this.addressHashes[i] == pubKeyHash) { - console.log(Crypto.util.bytesToBase64(Bitcoin.Util.sha256ripe160(keys[i].getPub())), pubKeyHash); return keys[i].getPub(); } } @@ -191,7 +189,6 @@ Bitcoin.Wallet = (function () { throw new Error('Insufficient funds.'); } - console.log(selectedOuts); var changeValue = availableValue.subtract(txValue); @@ -219,10 +216,6 @@ Bitcoin.Wallet = (function () { sendTx.ins[i].script = Script.createInputScript(signature, this.getPubKeyFromHash(pubKeyHash)); } - console.log(sendTx); - - console.log("pubkey: "+Crypto.util.bytesToHex(this.getPubKeyFromHash(pubKeyHash))); - return sendTx; };