Skip to content

Commit a96c598

Browse files
author
JoeG
committed
Merge remote-tracking branch 'upstream/develop' into develop
Conflicts: Mist/assets/qml/wallet.qml
2 parents b27100c + 7280057 commit a96c598

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

Mist/assets/qml/views/wallet.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Ethereum 1.0
99
Rectangle {
1010
id: root
1111
property var title: "Wallet"
12-
property var iconSource: "../wallet.png"
12+
property var iconSource: "../facet.png"
1313
property var menuItem
1414

1515
objectName: "walletView"

Mist/assets/qml/wallet.qml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,16 @@ ApplicationWindow {
101101
}
102102
}
103103

104-
menuBar: MenuBar {
105-
Menu {
106-
title: "File"
107-
MenuItem {
108-
text: "Import App"
109-
shortcut: "Ctrl+o"
110-
onTriggered: {
111-
generalFileDialog.show(true, importApp)
112-
}
113-
}
104+
menuBar: MenuBar {
105+
Menu {
106+
title: "File"
107+
MenuItem {
108+
text: "Import App"
109+
shortcut: "Ctrl+o"
110+
onTriggered: {
111+
generalFileDialog.show(true, importApp)
112+
}
113+
}
114114

115115
/*
116116
MenuItem {

javascript/types.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@ func (self *JSEthereum) GetStateObject(addr string) otto.Value {
8888
return self.toVal(&JSStateObject{ethpipe.NewJSObject(self.JSPipe.World().SafeGet(ethutil.Hex2Bytes(addr))), self})
8989
}
9090

91+
func (self *JSEthereum) Peers() otto.Value {
92+
return self.toVal(self.JSPipe.Peers())
93+
}
94+
9195
func (self *JSEthereum) Transact(key, recipient, valueStr, gasStr, gasPriceStr, dataStr string) otto.Value {
9296
r, err := self.JSPipe.Transact(key, recipient, valueStr, gasStr, gasPriceStr, dataStr)
9397
if err != nil {

0 commit comments

Comments
 (0)