Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
9e3c8029
Commit
9e3c8029
authored
Feb 20, 2018
by
Iuri Matias
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor: remove unnecessary level of depth from runInNode
parent
9937c9c4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
txRunner.js
src/app/execution/txRunner.js
+3
-9
No files found.
src/app/execution/txRunner.js
View file @
9e3c8029
...
...
@@ -126,22 +126,17 @@ TxRunner.prototype.runInVm = function (from, to, data, value, gasLimit, useCall,
TxRunner
.
prototype
.
runInNode
=
function
(
from
,
to
,
data
,
value
,
gasLimit
,
useCall
,
callback
)
{
const
self
=
this
var
tx
=
{
from
:
from
,
to
:
to
,
data
:
data
,
value
:
value
}
var
tx
=
{
from
:
from
,
to
:
to
,
data
:
data
,
value
:
value
}
if
(
useCall
)
{
tx
.
gas
=
gasLimit
executionContext
.
web3
().
eth
.
call
(
tx
,
function
(
error
,
result
)
{
return
executionContext
.
web3
().
eth
.
call
(
tx
,
function
(
error
,
result
)
{
callback
(
error
,
{
result
:
result
,
transactionHash
:
result
.
transactionHash
})
})
}
else
{
}
executionContext
.
web3
().
eth
.
estimateGas
(
tx
,
function
(
err
,
gasEstimation
)
{
if
(
err
)
{
return
callback
(
err
,
gasEstimation
)
...
...
@@ -192,7 +187,6 @@ TxRunner.prototype.runInNode = function (from, to, data, value, gasLimit, useCal
executeTx
(
tx
,
null
,
self
.
_api
,
callback
)
}
})
}
}
function
tryTillResponse
(
txhash
,
done
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment