From ee56abcc8a981300b0f33c017cb1c67d65d40db0 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Fri, 10 Feb 2017 18:35:05 -0300 Subject: [PATCH] remove console.logs from timer --- test/helpers/timer.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/helpers/timer.js b/test/helpers/timer.js index 032b2cfcc..4cd8f0916 100644 --- a/test/helpers/timer.js +++ b/test/helpers/timer.js @@ -1,6 +1,5 @@ // timer for tests specific to testrpc module.exports = s => { - console.log('timer to', s); return new Promise((resolve, reject) => { web3.currentProvider.sendAsync({ jsonrpc: '2.0', @@ -8,7 +7,6 @@ module.exports = s => { params: [s], // 60 seaconds, may need to be hex, I forget id: new Date().getTime() // Id of the request; anything works, really }, function(err) { - console.log('resolved to', err); if (err) return reject(err); resolve(); });