Commit 7d547150 authored by Iuri Matias's avatar Iuri Matias

ensure gasLimit is a BN

parent 1569d422
......@@ -94,12 +94,17 @@ class TxRunner {
}
}
runInVm (from, to, data, value, gasLimit, useCall, timestamp, callback) {
runInVm (from, to, data, value, _gasLimit, useCall, timestamp, callback) {
const self = this
var account = self.vmaccounts[from]
if (!account) {
return callback('Invalid account selected')
}
let gasLimit = _gasLimit
if (!BN.isBN(_gasLimit)) {
gasLimit = new BN(_gasLimit)
}
var tx = new EthJSTX({
timestamp: timestamp,
nonce: new BN(account.nonce++),
......
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