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
c1f8a640
Commit
c1f8a640
authored
Oct 08, 2014
by
Felix Lange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mist: adapt to API changes in ethereum/eth-go#57
parent
83a4b8b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ui_lib.go
mist/ui_lib.go
+6
-6
No files found.
mist/ui_lib.go
View file @
c1f8a640
...
...
@@ -193,21 +193,21 @@ func (self *UiLib) StartDebugger() {
dbWindow
.
Show
()
}
func
(
self
*
UiLib
)
NewFilter
(
object
map
[
string
]
interface
{})
int
{
filter
,
id
:=
self
.
eth
.
InstallFilter
(
object
)
func
(
self
*
UiLib
)
NewFilter
(
object
map
[
string
]
interface
{})
(
id
int
)
{
filter
:=
ethchain
.
NewFilterFromMap
(
object
,
self
.
eth
)
filter
.
MessageCallback
=
func
(
messages
ethstate
.
Messages
)
{
self
.
win
.
Root
()
.
Call
(
"invokeFilterCallback"
,
ethpipe
.
ToJSMessages
(
messages
),
id
)
}
id
=
self
.
eth
.
InstallFilter
(
filter
)
return
id
}
func
(
self
*
UiLib
)
NewFilterString
(
typ
string
)
int
{
filter
,
id
:=
self
.
eth
.
InstallFilter
(
nil
)
func
(
self
*
UiLib
)
NewFilterString
(
typ
string
)
(
id
int
)
{
filter
:=
ethchain
.
NewFilter
(
self
.
eth
)
filter
.
BlockCallback
=
func
(
block
*
ethchain
.
Block
)
{
self
.
win
.
Root
()
.
Call
(
"invokeFilterCallback"
,
"{}"
,
id
)
}
id
=
self
.
eth
.
InstallFilter
(
filter
)
return
id
}
...
...
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