good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
a96c5986
Commit
a96c5986
authored
Sep 18, 2014
by
Joseph Goulden
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'upstream/develop' into develop
Conflicts: Mist/assets/qml/wallet.qml
parents
b27100c8
72800572
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Mist/assets/qml/views/wallet.qml
+1
-1
1 addition, 1 deletion
Mist/assets/qml/views/wallet.qml
Mist/assets/qml/wallet.qml
+10
-10
10 additions, 10 deletions
Mist/assets/qml/wallet.qml
javascript/types.go
+4
-0
4 additions, 0 deletions
javascript/types.go
with
15 additions
and
11 deletions
Mist/assets/qml/views/wallet.qml
+
1
−
1
View file @
a96c5986
...
@@ -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
"
...
...
This diff is collapsed.
Click to expand it.
Mist/assets/qml/wallet.qml
+
10
−
10
View file @
a96c5986
This diff is collapsed.
Click to expand it.
javascript/types.go
+
4
−
0
View file @
a96c5986
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment