Commit 62822128 authored by Alex Beregszaszi's avatar Alex Beregszaszi

Use higher (3M) starting limit for gas

parent 52f255a4
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
<label for="txorigin"><select name="txorigin" id="txorigin"></select> Transaction origin</label> <label for="txorigin"><select name="txorigin" id="txorigin"></select> Transaction origin</label>
</div> </div>
<div class="crow hide"> <div class="crow hide">
<label for="gasLimit"><input type="number" id="gasLimit" value="0"> Gas limit</label> <label for="gasLimit"><input type="number" id="gasLimit" value="3000000"> Gas limit</label>
</div> </div>
<div class="crow hide"> <div class="crow hide">
<label for="gasPrice"><input type="number" id="gasPrice" value="0"> Gas Price</label> <label for="gasPrice"><input type="number" id="gasPrice" value="0"> Gas Price</label>
......
...@@ -618,7 +618,7 @@ UniversalDApp.prototype.runTx = function (data, args, cb) { ...@@ -618,7 +618,7 @@ UniversalDApp.prototype.runTx = function (data, args, cb) {
data = '0x' + data; data = '0x' + data;
} }
var gas = self.options.getGas ? self.options.getGas : 1000000; var gas = self.options.getGas ? self.options.getGas : 3000000;
var value = 0; var value = 0;
if (self.options.getValue) { if (self.options.getValue) {
......
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