From 628221286d07ccc49dd4e7d29492dadf4b9a9519 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Mon, 23 May 2016 17:46:45 +0100 Subject: [PATCH] Use higher (3M) starting limit for gas --- index.html | 2 +- src/universal-dapp.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f704082cab..6d0960d26a 100644 --- a/index.html +++ b/index.html @@ -74,7 +74,7 @@
- +
diff --git a/src/universal-dapp.js b/src/universal-dapp.js index 079426045f..fdd61c7f0b 100644 --- a/src/universal-dapp.js +++ b/src/universal-dapp.js @@ -618,7 +618,7 @@ UniversalDApp.prototype.runTx = function (data, args, cb) { data = '0x' + data; } - var gas = self.options.getGas ? self.options.getGas : 1000000; + var gas = self.options.getGas ? self.options.getGas : 3000000; var value = 0; if (self.options.getValue) {