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
56c8e62d
Commit
56c8e62d
authored
Apr 16, 2016
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display raw result as well as decoded output separately
parent
312098ba
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
6 deletions
+15
-6
universal-dapp.js
assets/js/universal-dapp.js
+15
-6
No files found.
assets/js/universal-dapp.js
View file @
56c8e62d
...
...
@@ -264,6 +264,14 @@ UniversalDApp.prototype.getCallButton = function(args) {
return
$gasUsed
;
}
var
getDecodedOutput
=
function
(
result
)
{
var
$decoded
=
$
(
'<ol>'
);
for
(
var
i
=
0
;
i
<
result
.
length
;
i
++
)
{
$decoded
.
append
(
$
(
'<li>'
).
text
(
result
[
i
]));
}
return
$
(
'<div class="decoded">'
).
html
(
'<strong>Decoded:</strong> '
).
append
(
$decoded
);
}
var
getOutput
=
function
()
{
var
$result
=
$
(
'<div class="result" />'
);
var
$close
=
$
(
'<div class="udapp-close" />'
);
...
...
@@ -340,20 +348,21 @@ UniversalDApp.prototype.getCallButton = function(args) {
replaceOutput
(
$result
,
getGasUsedOutput
(
result
));
args
.
appendFunctions
(
result
.
createdAddress
);
}
else
if
(
self
.
options
.
vm
){
var
outputObj
;
var
outputObj
=
'0x'
+
result
.
vm
.
return
.
toString
(
'hex'
);
clearOutput
(
$result
);
$result
.
append
(
getReturnOutput
(
outputObj
)).
append
(
getGasUsedOutput
(
result
.
vm
));
try
{
var
outputTypes
=
[];
for
(
var
i
=
0
;
i
<
args
.
abi
.
outputs
.
length
;
i
++
)
{
outputTypes
.
push
(
args
.
abi
.
outputs
[
i
].
type
);
}
outputObj
=
EthJS
.
ABI
.
rawDecode
(
null
,
null
,
outputTypes
,
result
.
vm
.
return
);
var
decodedObj
=
EthJS
.
ABI
.
rawDecode
(
null
,
null
,
outputTypes
,
result
.
vm
.
return
);
$result
.
append
(
getDecodedOutput
(
decodedObj
));
}
catch
(
e
)
{
outputObj
=
'0x'
+
result
.
vm
.
return
.
toString
(
'hex'
);
}
clearOutput
(
$result
);
$result
.
append
(
getReturnOutput
(
outputObj
)).
append
(
getGasUsedOutput
(
result
.
vm
));
}
else
if
(
args
.
abi
.
constant
&&
!
isConstructor
)
{
replaceOutput
(
$result
,
getReturnOutput
(
result
));
}
else
{
...
...
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