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
72800572
Commit
72800572
authored
Sep 18, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor visual updates
parent
01863ebf
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
889 additions
and
906 deletions
+889
-906
wallet.qml
Mist/assets/qml/views/wallet.qml
+1
-1
wallet.qml
Mist/assets/qml/wallet.qml
+884
-905
types.go
javascript/types.go
+4
-0
No files found.
Mist/assets/qml/views/wallet.qml
View file @
72800572
...
@@ -9,7 +9,7 @@ import Ethereum 1.0
...
@@ -9,7 +9,7 @@ import Ethereum 1.0
Rectangle
{
Rectangle
{
id
:
root
id
:
root
property
var
title
:
"Wallet"
property
var
title
:
"Wallet"
property
var
iconSource
:
"../
wall
et.png"
property
var
iconSource
:
"../
fac
et.png"
property
var
menuItem
property
var
menuItem
objectName
:
"walletView"
objectName
:
"walletView"
...
...
Mist/assets/qml/wallet.qml
View file @
72800572
This diff is collapsed.
Click to expand it.
javascript/types.go
View file @
72800572
...
@@ -88,6 +88,10 @@ func (self *JSEthereum) GetStateObject(addr string) otto.Value {
...
@@ -88,6 +88,10 @@ func (self *JSEthereum) GetStateObject(addr string) otto.Value {
return
self
.
toVal
(
&
JSStateObject
{
ethpipe
.
NewJSObject
(
self
.
JSPipe
.
World
()
.
SafeGet
(
ethutil
.
Hex2Bytes
(
addr
))),
self
})
return
self
.
toVal
(
&
JSStateObject
{
ethpipe
.
NewJSObject
(
self
.
JSPipe
.
World
()
.
SafeGet
(
ethutil
.
Hex2Bytes
(
addr
))),
self
})
}
}
func
(
self
*
JSEthereum
)
Peers
()
otto
.
Value
{
return
self
.
toVal
(
self
.
JSPipe
.
Peers
())
}
func
(
self
*
JSEthereum
)
Transact
(
key
,
recipient
,
valueStr
,
gasStr
,
gasPriceStr
,
dataStr
string
)
otto
.
Value
{
func
(
self
*
JSEthereum
)
Transact
(
key
,
recipient
,
valueStr
,
gasStr
,
gasPriceStr
,
dataStr
string
)
otto
.
Value
{
r
,
err
:=
self
.
JSPipe
.
Transact
(
key
,
recipient
,
valueStr
,
gasStr
,
gasPriceStr
,
dataStr
)
r
,
err
:=
self
.
JSPipe
.
Transact
(
key
,
recipient
,
valueStr
,
gasStr
,
gasPriceStr
,
dataStr
)
if
err
!=
nil
{
if
err
!=
nil
{
...
...
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