From d885fba8ad6122412a5dbcc9ec1865bcd07487af Mon Sep 17 00:00:00 2001 From: d11e9 Date: Tue, 6 Oct 2015 17:59:49 +0100 Subject: [PATCH] remove extranious console logs from universal-dapp --- libs/universal-dapp.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libs/universal-dapp.js b/libs/universal-dapp.js index 57a0bd998f..ae42084f47 100644 --- a/libs/universal-dapp.js +++ b/libs/universal-dapp.js @@ -252,7 +252,6 @@ UniversalDApp.prototype.getCallButton = function(args) { function testResult (err, address) { if (!err && !address) { - console.log( "Polling for tx receipt....") setTimeout( function(){ tryTillResponse(txhash, done) }, 500) } else done( err, address ) } @@ -301,9 +300,6 @@ UniversalDApp.prototype.runTx = function( data, args, cb) { var to = args.address; var constant = args.abi.constant; var isConstructor = args.bytecode !== undefined; - - console.log( "runtx (" + args.abi.name + ") data: ", data ) - console.log( "runtx (" + args.abi.name + ") to:", to ) if (!this.vm) { if (constant && !isConstructor) { @@ -316,7 +312,6 @@ UniversalDApp.prototype.runTx = function( data, args, cb) { data: data, gas: 1000000 }, function(err, resp) { - console.log( 'sendTx callback:', err, resp ) cb( err, resp ) }) }