8000 disable eth-node switch until hardfork is supported by luclu · Pull Request #975 · ethereum/mist · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Sep 5, 2020. It is now read-only.

disable eth-node switch until hardfork is supported #975

Merged
merged 2 commits into from
Jul 17, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions modules/menuItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,10 @@ var menuTempl = function(webviews) {
}
},
{
label: 'Eth 1.2.9 (C++) [experimental!]',
checked: ethereumNode.isOwnNode && ethereumNode.isEth,
enabled: ethereumNode.isOwnNode,
label: 'Eth 1.2.9 (C++) [no hardfork support!]',
/*checked: ethereumNode.isOwnNode && ethereumNode.isEth,
enabled: ethereumNode.isOwnNode,*/
enabled: false,
type: 'checkbox',
click: function(){
restartNode('eth');
Expand Down
0