From bc2c4d872c260fd023954ed057a802d2fc7d5115 Mon Sep 17 00:00:00 2001 From: Ricardo Guilherme Schmidt <3esmit@gmail.com> Date: Tue, 15 May 2018 17:49:01 -0300 Subject: [PATCH] small fix and comment unstable code --- utils/testUtils.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/testUtils.js b/utils/testUtils.js index 6f0a6df..a4b3bf0 100644 --- a/utils/testUtils.js +++ b/utils/testUtils.js @@ -210,14 +210,14 @@ exports.increaseTime = async (amount) => { { jsonrpc: '2.0', method: 'evm_increaseTime', - params: [amount], + params: [+amount], id: new Date().getSeconds() }, (error) => { if(error) { console.log(error) } else { - web3.currentProvider.sendAsync( + /*web3.currentProvider.sendAsync( { jsonrpc: '2.0', method: 'evm_mine', @@ -228,7 +228,7 @@ exports.increaseTime = async (amount) => { console.log(error) } } - ) + )*/ } } )