From 029ede433e04271394cf833c1970f342b1aeb628 Mon Sep 17 00:00:00 2001 From: abhayks1 Date: Mon, 4 Mar 2019 16:22:12 +0530 Subject: [PATCH] Fixes comment to 2*10^16 --- test/utils/configReader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/utils/configReader.js b/test/utils/configReader.js index 9ecd99b..3a1196b 100644 --- a/test/utils/configReader.js +++ b/test/utils/configReader.js @@ -17,8 +17,8 @@ ConfigReader.prototype = { eip20TokenDecimals: '18', sessionKeySpendingLimit: '1000000000000000000000', //1000 ethers sessionKeyExpirationHeight: '1000000000000000000', - price: '20000000000000000', // $0.02 = 20*10^16 - acceptanceMargin: '1000000000000000000', // $1 + price: '20000000000000000', // $0.02 = 2*10^16 + acceptanceMargin: '1000000000000000000', // $1 = 1*10^18 auxiliaryPort: 8546, workerExpirationHeight: '20000000' };