Commit 93093436 authored by Grandschtroumpf's avatar Grandschtroumpf

standard fixes

parent a562a413
const async = require('async') const async = require('async')
const { BN, privateToAddress, isValidPrivate, stripHexPrefix } = require('ethereumjs-util') const { BN, privateToAddress, isValidPrivate, stripHexPrefix } = require('ethereumjs-util')
const crypto = require('crypto') const crypto = require('crypto')
const { EventEmitter } = require('events'); const { EventEmitter } = require('events')
const TxRunner = require('./execution/txRunner') const TxRunner = require('./execution/txRunner')
const txHelper = require('./execution/txHelper') const txHelper = require('./execution/txHelper')
...@@ -345,7 +345,7 @@ module.exports = class UniversalDApp { ...@@ -345,7 +345,7 @@ module.exports = class UniversalDApp {
function runTransaction (fromAddress, value, gasLimit, next) { function runTransaction (fromAddress, value, gasLimit, next) {
const tx = { to: args.to, data: args.data.dataHex, useCall: args.useCall, from: fromAddress, value: value, gasLimit: gasLimit, timestamp: args.data.timestamp } const tx = { to: args.to, data: args.data.dataHex, useCall: args.useCall, from: fromAddress, value: value, gasLimit: gasLimit, timestamp: args.data.timestamp }
const payLoad = { funAbi: args.data.funAbi, funArgs: args.data.funArgs, contractBytecode: args.data.contractBytecode, contractName: args.data.contractName, contractABI: args.data.contractABI, linkReferences: args.data.linkReferences } const payLoad = { funAbi: args.data.funAbi, funArgs: args.data.funArgs, contractBytecode: args.data.contractBytecode, contractName: args.data.contractName, contractABI: args.data.contractABI, linkReferences: args.data.linkReferences }
const timestamp = Date.now() let timestamp = Date.now()
if (tx.timestamp) { if (tx.timestamp) {
timestamp = tx.timestamp timestamp = tx.timestamp
} }
...@@ -368,4 +368,4 @@ module.exports = class UniversalDApp { ...@@ -368,4 +368,4 @@ module.exports = class UniversalDApp {
} }
], cb) ], cb)
} }
} }
\ 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