Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
update geth to 1.4.17 (#1274)
Browse files Browse the repository at this point in the history
* update geth to 1.4.17

* gpg signing test

* uploaded 1.4.17 binaries
  • Loading branch information
luclu authored Oct 11, 2016
1 parent 565d6d7 commit 6a76088
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,26 +47,26 @@ var filenameLowercase = 'mist';
var filenameUppercase = 'Mist';
var applicationName = 'Mist';
var electronVersion = require('electron-prebuilt/package.json').version;
var gethVersion = '1.4.16';
var gethVersion = '1.4.17';
var nodeUrls = {
'mac-x64': {
url: 'https://bintray.com/artifact/download/karalabe/ethereum/geth-1.4.16-stable-6881525-darwin-10.6-amd64.tar.bz2',
url: 'https://bintray.com/artifact/download/luclu/ethereum/geth-1.4.17-stable-5a6008e-darwin-10.6-amd64.tar.bz2',
ext: 'tar'
},
'linux-x64': {
url: 'https://bintray.com/artifact/download/karalabe/ethereum/geth-1.4.16-stable-6881525-linux-amd64.tar.bz2',
url: 'https://bintray.com/artifact/download/luclu/ethereum/geth-1.4.17-stable-5a6008e-linux-amd64.tar.bz2',
ext: 'tar',
},
'linux-ia32': {
url: 'https://bintray.com/artifact/download/karalabe/ethereum/geth-1.4.16-stable-6881525-linux-386.tar.bz2',
url: 'https://bintray.com/artifact/download/luclu/ethereum/geth-1.4.17-stable-5a6008e-linux-386.tar.bz2',
ext: 'tar',
},
'win-x64': {
url: 'https://bintray.com/artifact/download/karalabe/ethereum/geth-1.4.16-stable-6881525-windows-4.0-amd64.exe.zip',
url: 'https://bintray.com/artifact/download/luclu/ethereum/geth-1.4.17-stable-5a6008e-windows-4.0-amd64.exe.zip',
ext: 'zip',
},
'win-ia32': {
url: 'https://bintray.com/artifact/download/karalabe/ethereum/geth-1.4.16-stable-6881525-windows-4.0-386.exe.zip',
url: 'https://bintray.com/artifact/download/luclu/ethereum/geth-1.4.17-stable-5a6008e-windows-4.0-386.exe.zip',
ext: 'zip',
},
};
Expand Down Expand Up @@ -593,4 +593,3 @@ gulp.task('test-wallet', function() {


gulp.task('default', ['mist']);

2 changes: 1 addition & 1 deletion modules/menuItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ var menuTempl = function(webviews) {
label: i18n.t('mist.applicationMenu.develop.ethereumNode'),
submenu: [
{
label: 'Geth 1.4.16 (Go)',
label: 'Geth 1.4.17 (Go)',
checked: ethereumNode.isOwnNode && ethereumNode.isGeth,
enabled: ethereumNode.isOwnNode,
type: 'checkbox',
Expand Down

0 comments on commit 6a76088

Please sign in to comment.