Commit c8a6060f authored by d11e9's avatar d11e9

fix universal-dapp vm gas regression

parent cf8c9b5a
...@@ -322,7 +322,7 @@ UniversalDApp.prototype.runTx = function( data, args, cb) { ...@@ -322,7 +322,7 @@ UniversalDApp.prototype.runTx = function( data, args, cb) {
var tx = new EthVm.Transaction({ var tx = new EthVm.Transaction({
nonce: new Buffer([this.nonce++]), //@todo count beyond 255 nonce: new Buffer([this.nonce++]), //@todo count beyond 255
gasPrice: '01', gasPrice: '01',
gasLimit: '3000000', gasLimit: '3000000000', //plenty
to: to, to: to,
data: data data: data
}); });
...@@ -332,4 +332,4 @@ UniversalDApp.prototype.runTx = function( data, args, cb) { ...@@ -332,4 +332,4 @@ UniversalDApp.prototype.runTx = function( data, args, cb) {
cb( e, null ); cb( e, null );
} }
} }
} }
\ No newline at end of file
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