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
c4f9151c
Commit
c4f9151c
authored
Jul 01, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved files
parent
28353213
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
31 deletions
+8
-31
Makefile
ethereal/Makefile
+0
-22
debugger.go
ethereal/debugger.go
+1
-1
ext_app.go
ethereal/ext_app.go
+1
-1
gui.go
ethereal/gui.go
+2
-2
html_container.go
ethereal/html_container.go
+1
-1
main.go
ethereal/main.go
+1
-2
qml_container.go
ethereal/qml_container.go
+1
-1
ui_lib.go
ethereal/ui_lib.go
+1
-1
No files found.
ethereal/Makefile
deleted
100644 → 0
View file @
28353213
UNAME
=
$(
shell
uname
)
FILES
=
qml
*
.png
GOPATH
=
$(PWD)
# Default is building
all
:
go get
-d
cp
*
.go
$(GOPATH)
/src/github.com/ethereum/go-ethereum
cp
-r
ui
$(GOPATH)
/src/github.com/ethereum/go-ethereum
go build
install
:
# Linux build
ifeq
($(UNAME),Linux)
cp
-r
assets/*
/usr/share/ethereal
cp
go-ethereum
/usr/local/bin/ethereal
endif
# OS X build
ifeq
($(UNAME),Darwin)
# Execute py script
endif
ethereal/
ui/
debugger.go
→
ethereal/debugger.go
View file @
c4f9151c
package
ethui
package
main
import
(
"fmt"
...
...
ethereal/
ui/
ext_app.go
→
ethereal/ext_app.go
View file @
c4f9151c
package
ethui
package
main
import
(
"fmt"
...
...
ethereal/
ui/
gui.go
→
ethereal/gui.go
View file @
c4f9151c
package
ethui
package
main
import
(
"bytes"
...
...
@@ -40,7 +40,7 @@ type Gui struct {
}
// Create GUI, but doesn't start it
func
New
(
ethereum
*
eth
.
Ethereum
,
session
string
,
logLevel
int
)
*
Gui
{
func
New
Window
(
ethereum
*
eth
.
Ethereum
,
session
string
,
logLevel
int
)
*
Gui
{
db
,
err
:=
ethdb
.
NewLDBDatabase
(
"tx_database"
)
if
err
!=
nil
{
...
...
ethereal/
ui/
html_container.go
→
ethereal/html_container.go
View file @
c4f9151c
package
ethui
package
main
import
(
"errors"
...
...
ethereal/main.go
View file @
c4f9151c
...
...
@@ -2,7 +2,6 @@ package main
import
(
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/go-ethereum/ethereal/ui"
"github.com/ethereum/go-ethereum/utils"
"github.com/go-qml/qml"
"os"
...
...
@@ -47,7 +46,7 @@ func main() {
utils
.
StartRpc
(
ethereum
,
RpcPort
)
}
gui
:=
ethui
.
Ne
w
(
ethereum
,
KeyRing
,
LogLevel
)
gui
:=
NewWindo
w
(
ethereum
,
KeyRing
,
LogLevel
)
utils
.
RegisterInterrupt
(
func
(
os
.
Signal
)
{
gui
.
Stop
()
...
...
ethereal/
ui/qml_app
.go
→
ethereal/
qml_container
.go
View file @
c4f9151c
package
ethui
package
main
import
(
"github.com/ethereum/eth-go/ethchain"
...
...
ethereal/ui
/ui
_lib.go
→
ethereal/ui_lib.go
View file @
c4f9151c
package
ethui
package
main
import
(
"github.com/ethereum/eth-go"
...
...
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