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
e777c085
Commit
e777c085
authored
Dec 12, 2016
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decode fixedbytearray
parent
9c28e294
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
FixedByteArray.js
src/solidity/types/FixedByteArray.js
+9
-0
No files found.
src/solidity/types/FixedByteArray.js
View file @
e777c085
...
@@ -12,4 +12,13 @@ FixedByteArray.prototype.decodeFromStorage = function (location, storageContent)
...
@@ -12,4 +12,13 @@ FixedByteArray.prototype.decodeFromStorage = function (location, storageContent)
return
'0x'
+
value
.
toUpperCase
()
return
'0x'
+
value
.
toUpperCase
()
}
}
FixedByteArray
.
prototype
.
decodeLocals
=
function
(
stackHeight
,
stack
,
memory
)
{
if
(
stack
.
length
-
1
<
stackHeight
)
{
return
'0x'
}
else
{
var
value
=
stack
[
stack
.
length
-
1
-
stackHeight
]
return
'0x'
+
value
.
substr
(
2
,
2
*
this
.
storageBytes
).
toUpperCase
()
// util.extractHexByteSlice(stack[stack.length - 1 - stackHeight], this.storageBytes, this.storageBytes)
}
}
module
.
exports
=
FixedByteArray
module
.
exports
=
FixedByteArray
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