Skip to content

Commit 761af68

Browse files
committed
Changed peer server default
1 parent 430a489 commit 761af68

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

mist/assets/qml/wallet.qml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,18 @@ ApplicationWindow {
4545

4646
// Takes care of loading all default plugins
4747
Component.onCompleted: {
48-
addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "ethereum", active: true});
49-
root.web = addPlugin("./webapp.qml", {noAdd: true, close: false, section: "ethereum", active: true});
48+
var wallet = addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "ethereum", active: true});
49+
var browser = addPlugin("./webapp.qml", {noAdd: true, close: false, section: "ethereum", active: true});
50+
root.web = browser.view;
5051

5152
addPlugin("./views/transaction.qml", {noAdd: true, close: false, section: "legacy"});
5253
addPlugin("./views/chain.qml", {noAdd: true, close: false, section: "legacy"});
5354
addPlugin("./views/info.qml", {noAdd: true, close: false, section: "legacy"});
5455
addPlugin("./views/pending_tx.qml", {noAdd: true, close: false, section: "legacy"});
5556
addPlugin("./views/javascript.qml", {noAdd: true, close: false, section: "legacy"});
5657

58+
mainSplit.setView(wallet.view, wallet.menuItem);
59+
5760
// Call the ready handler
5861
gui.done();
5962
}
@@ -97,7 +100,7 @@ ApplicationWindow {
97100
var view = mainView.createView(component, options)
98101
var views = addViews(view, path, options)
99102

100-
return views.view
103+
return views
101104
} catch(e) {
102105
ethx.note(e)
103106
}
@@ -803,7 +806,7 @@ ApplicationWindow {
803806
anchors.top: parent.top
804807
anchors.topMargin: 40
805808
font.pointSize: 12
806-
text: "<h2>Mist - Amalthea</h2><br><h3>Development</h3>Jeffrey Wilcke<br>Viktor Trón<br>"
809+
text: "<h2>Mist (0.6.5)</h2><h4>Amalthea</h4><br><h3>Development</h3>Jeffrey Wilcke<br>Viktor Trón<br>"
807810
}
808811
}
809812

@@ -867,7 +870,7 @@ ApplicationWindow {
867870
pastPeers.append({text: ips.get(i)})
868871
}
869872

870-
pastPeers.insert(0, {text: "54.76.56.74:30303"})
873+
pastPeers.insert(0, {text: "poc-6.ethdev.com:30303"})
871874
}
872875
}
873876

0 commit comments

Comments
 (0)