Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
a56f78af
Commit
a56f78af
authored
Jun 04, 2014
by
Maran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement getStateKeyVal for JS bindings.
Gives JS the option to 'loop' over contract key/val storage
parent
d7b88297
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
types.go
ethpub/types.go
+25
-0
No files found.
ethpub/types.go
View file @
a56f78af
...
@@ -207,6 +207,31 @@ func (c *PStateObject) IsContract() bool {
...
@@ -207,6 +207,31 @@ func (c *PStateObject) IsContract() bool {
return
false
return
false
}
}
type
KeyVal
struct
{
Key
string
Value
string
}
func
(
c
*
PStateObject
)
StateKeyVal
(
asJson
bool
)
interface
{}
{
var
values
[]
KeyVal
if
c
.
object
!=
nil
{
c
.
object
.
State
()
.
EachStorage
(
func
(
name
string
,
value
*
ethutil
.
Value
)
{
values
=
append
(
values
,
KeyVal
{
name
,
ethutil
.
Hex
(
value
.
Bytes
())})
})
}
if
asJson
{
valuesJson
,
err
:=
json
.
Marshal
(
values
)
if
err
!=
nil
{
return
nil
}
fmt
.
Println
(
string
(
valuesJson
))
return
string
(
valuesJson
)
}
return
values
}
func
(
c
*
PStateObject
)
Script
()
string
{
func
(
c
*
PStateObject
)
Script
()
string
{
if
c
.
object
!=
nil
{
if
c
.
object
!=
nil
{
return
strings
.
Join
(
ethchain
.
Disassemble
(
c
.
object
.
Script
()),
" "
)
return
strings
.
Join
(
ethchain
.
Disassemble
(
c
.
object
.
Script
()),
" "
)
...
...
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