Browse Source

remove console.logs from timer

Manuel Araoz 8 years ago
parent
commit
ee56abcc8a
1 changed files with 0 additions and 2 deletions
  1. 0 2
      test/helpers/timer.js

+ 0 - 2
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();
     });