Commit ee56abcc by Manuel Araoz

remove console.logs from timer

parent b67f6092
// timer for tests specific to testrpc // timer for tests specific to testrpc
module.exports = s => { module.exports = s => {
console.log('timer to', s);
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
web3.currentProvider.sendAsync({ web3.currentProvider.sendAsync({
jsonrpc: '2.0', jsonrpc: '2.0',
...@@ -8,7 +7,6 @@ module.exports = s => { ...@@ -8,7 +7,6 @@ module.exports = s => {
params: [s], // 60 seaconds, may need to be hex, I forget params: [s], // 60 seaconds, may need to be hex, I forget
id: new Date().getTime() // Id of the request; anything works, really id: new Date().getTime() // Id of the request; anything works, really
}, function(err) { }, function(err) {
console.log('resolved to', err);
if (err) return reject(err); if (err) return reject(err);
resolve(); resolve();
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment