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
9836641c
Commit
9836641c
authored
Jun 12, 2018
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use tx and receipt to build logs
parent
3e385f9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
txLogger.js
src/app/execution/txLogger.js
+10
-10
No files found.
src/app/execution/txLogger.js
View file @
9836641c
...
...
@@ -180,12 +180,12 @@ class TxLogger {
}
})
opts
.
events
.
txListener
.
register
(
'newTransaction'
,
(
tx
)
=>
{
log
(
this
,
tx
,
opts
.
api
)
opts
.
events
.
txListener
.
register
(
'newTransaction'
,
(
tx
,
receipt
)
=>
{
log
(
this
,
tx
,
receipt
,
opts
.
api
)
})
opts
.
events
.
txListener
.
register
(
'newCall'
,
(
tx
)
=>
{
log
(
this
,
tx
,
opts
.
api
)
log
(
this
,
tx
,
null
,
opts
.
api
)
})
}
}
...
...
@@ -199,17 +199,17 @@ function debug (e, data, self) {
}
}
function
log
(
self
,
tx
,
api
)
{
function
log
(
self
,
tx
,
receipt
,
api
)
{
var
resolvedTransaction
=
api
.
resolvedTransaction
(
tx
.
hash
)
if
(
resolvedTransaction
)
{
api
.
parseLogs
(
tx
,
resolvedTransaction
.
contractName
,
api
.
compiledContracts
(),
(
error
,
logs
)
=>
{
if
(
!
error
)
{
self
.
logKnownTX
({
tx
:
tx
,
resolvedData
:
resolvedTransaction
,
logs
:
logs
})
self
.
logKnownTX
({
tx
:
tx
,
re
ceipt
:
receipt
,
re
solvedData
:
resolvedTransaction
,
logs
:
logs
})
}
})
}
else
{
// contract unknown - just displaying raw tx.
self
.
logUnknownTX
({
tx
:
tx
})
self
.
logUnknownTX
({
tx
:
tx
,
receipt
:
receipt
})
}
}
...
...
@@ -221,7 +221,7 @@ function renderKnownTransaction (self, data) {
var
tx
=
yo
`
<span id="tx
${
data
.
tx
.
hash
}
">
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
${
checkTxStatus
(
data
.
tx
,
txType
)}
${
checkTxStatus
(
data
.
receipt
,
txType
)}
${
context
(
self
,
{
from
,
to
,
data
})}
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
...
...
@@ -267,7 +267,7 @@ function renderUnknownTransaction (self, data) {
var
tx
=
yo
`
<span id="tx
${
data
.
tx
.
hash
}
">
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
${
checkTxStatus
(
data
.
tx
,
txType
)}
${
checkTxStatus
(
data
.
receipt
,
txType
)}
${
context
(
self
,
{
from
,
to
,
data
})}
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
...
...
@@ -370,8 +370,8 @@ function txDetails (e, tx, data, obj) {
log
.
removeChild
(
arrow
)
log
.
appendChild
(
arrowUp
)
table
=
createTable
({
hash
:
data
.
tx
.
transactionH
ash
,
status
:
data
.
tx
.
status
,
hash
:
data
.
tx
.
h
ash
,
status
:
data
.
receipt
.
status
,
isCall
:
data
.
tx
.
isCall
,
contractAddress
:
data
.
tx
.
contractAddress
,
data
:
data
.
tx
,
...
...
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