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
f802e176
Commit
f802e176
authored
May 28, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
8fab7ce3
44db1a1e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1004 additions
and
1007 deletions
+1004
-1007
README.md
README.md
+1
-1
wallet.qml
ethereal/assets/qml/wallet.qml
+1000
-1002
gui.go
ethereal/ui/gui.go
+1
-1
ui_lib.go
ethereal/ui/ui_lib.go
+2
-3
No files found.
README.md
View file @
f802e176
...
@@ -5,7 +5,7 @@ Ethereum
...
@@ -5,7 +5,7 @@ Ethereum
Ethereum Go Client © 2014 Jeffrey Wilcke.
Ethereum Go Client © 2014 Jeffrey Wilcke.
Current state: Proof of Concept 5.0 RC1
0
.
Current state: Proof of Concept 5.0 RC1
1
.
For the development package please see the
[
eth-go package
](
https://github.com/ethereum/eth-go
)
.
For the development package please see the
[
eth-go package
](
https://github.com/ethereum/eth-go
)
.
...
...
ethereal/assets/qml/wallet.qml
View file @
f802e176
This diff is collapsed.
Click to expand it.
ethereal/ui/gui.go
View file @
f802e176
...
@@ -54,7 +54,7 @@ func New(ethereum *eth.Ethereum) *Gui {
...
@@ -54,7 +54,7 @@ func New(ethereum *eth.Ethereum) *Gui {
}
}
func
(
gui
*
Gui
)
Start
(
assetPath
string
)
{
func
(
gui
*
Gui
)
Start
(
assetPath
string
)
{
const
version
=
"0.5.0 RC1
0
"
const
version
=
"0.5.0 RC1
1
"
defer
gui
.
txDb
.
Close
()
defer
gui
.
txDb
.
Close
()
...
...
ethereal/ui/ui_lib.go
View file @
f802e176
...
@@ -2,7 +2,6 @@ package ethui
...
@@ -2,7 +2,6 @@ package ethui
import
(
import
(
"bitbucket.org/kardianos/osext"
"bitbucket.org/kardianos/osext"
"encoding/hex"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethutil"
...
@@ -94,9 +93,9 @@ func (self *UiLib) StartDbWithContractAndData(contractHash, data string) {
...
@@ -94,9 +93,9 @@ func (self *UiLib) StartDbWithContractAndData(contractHash, data string) {
dbWindow
:=
NewDebuggerWindow
(
self
)
dbWindow
:=
NewDebuggerWindow
(
self
)
object
:=
self
.
eth
.
StateManager
()
.
CurrentState
()
.
GetStateObject
(
ethutil
.
FromHex
(
contractHash
))
object
:=
self
.
eth
.
StateManager
()
.
CurrentState
()
.
GetStateObject
(
ethutil
.
FromHex
(
contractHash
))
if
len
(
object
.
Script
())
>
0
{
if
len
(
object
.
Script
())
>
0
{
dbWindow
.
SetCode
(
"0x"
+
hex
.
EncodeToString
(
object
.
Script
()))
dbWindow
.
SetCode
(
"0x"
+
ethutil
.
Hex
(
object
.
Script
()))
}
}
dbWindow
.
SetData
(
data
)
dbWindow
.
SetData
(
"0x"
+
data
)
dbWindow
.
Show
()
dbWindow
.
Show
()
}
}
...
...
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