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
8f1b4612
Commit
8f1b4612
authored
Aug 15, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected getEachStorageAt
parent
c2c8757b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
test.html
ethereal/assets/ext/test.html
+5
-2
webapp.qml
ethereal/assets/qml/webapp.qml
+1
-1
No files found.
ethereal/assets/ext/test.html
View file @
8f1b4612
...
...
@@ -12,6 +12,7 @@ function test() {
var
filter
=
eth
.
watch
({
latest
:
-
1
,
from
:
"e6716f9544a56c530d868e4bfbacb172315bdead"
,
altered
:
[
"aabb"
,
{
id
:
"eeff"
,
"at"
:
"aabb"
}],
});
filter
.
changed
(
function
(
messages
)
{
...
...
@@ -22,8 +23,10 @@ function test() {
console
.
log
(
"getMessages"
,
messages
)
});
eth
.
getEachStorageAt
(
"9ef0f0d81e040012600b0c1abdef7c48f720f88a"
,
function
(
a
,
b
)
{
console
.
log
(
a
,
b
)
eth
.
getEachStorageAt
(
"9ef0f0d81e040012600b0c1abdef7c48f720f88a"
,
function
(
entries
)
{
for
(
var
i
=
0
;
i
<
entries
.
length
;
i
++
)
{
console
.
log
(
entries
[
i
].
key
,
" : "
,
entries
[
i
].
value
)
}
})
eth
.
getBlock
(
"f70097659f329a09642a27f11338d9269de64f1d4485786e36bfc410832148cd"
,
function
(
block
)
{
...
...
ethereal/assets/qml/webapp.qml
View file @
8f1b4612
...
...
@@ -195,7 +195,7 @@ ApplicationWindow {
case
"getEachStorage"
:
require
(
1
);
var
storage
=
eth
.
getEachStorage
(
data
.
args
[
0
]
)
var
storage
=
JSON
.
parse
(
eth
.
getEachStorage
(
data
.
args
[
0
])
)
postData
(
data
.
_seed
,
storage
)
break
...
...
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