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

Commit

Permalink
update geth 1.6.0 (#2146)
Browse files Browse the repository at this point in the history
* update geth 1.6.0

* [tests] geth 1.6.0 compatibility
  • Loading branch information
luclu authored and evertonfraga committed Apr 18, 2017
1 parent e30fbb7 commit 313b201
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 24 deletions.
42 changes: 21 additions & 21 deletions clientBinaries.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,85 +2,85 @@
{
"clients": {
"Geth": {
"version": "1.5.9",
"version": "1.6.0",
"platforms": {
"linux": {
"x64": {
"download": {
"url": "https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.5.9-a07539fb.tar.gz",
"url": "https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.6.0-facc47cb.tar.gz",
"type": "tar",
"md5": "a0b0dda353a655a65c6d3d809ee852fd",
"bin": "geth-linux-amd64-1.5.9-a07539fb/geth"
"md5": "048b0618696b040f6d3ff18ee2e5763a",
"bin": "geth-linux-amd64-1.6.0-facc47cb/geth"
},
"bin": "geth",
"commands": {
"sanity": {
"args": ["version"],
"output": [ "Geth", "1.5.9" ]
"output": [ "Geth", "1.6.0" ]
}
}
},
"ia32": {
"download": {
"url": "https://gethstore.blob.core.windows.net/builds/geth-linux-386-1.5.9-a07539fb.tar.gz",
"url": "https://gethstore.blob.core.windows.net/builds/geth-linux-386-1.6.0-facc47cb.tar.gz",
"type": "tar",
"md5": "3198330842cbfc6baa7e7b2624f8f6bd",
"bin": "geth-linux-386-1.5.9-a07539fb/geth"
"md5": "44215076b4d50e079878bcabeaae2117",
"bin": "geth-linux-386-1.6.0-facc47cb/geth"
},
"bin": "geth",
"commands": {
"sanity": {
"args": ["version"],
"output": [ "Geth", "1.5.9" ]
"output": [ "Geth", "1.6.0" ]
}
}
}
},
"mac": {
"x64": {
"download": {
"url": "https://gethstore.blob.core.windows.net/builds/geth-darwin-amd64-1.5.9-a07539fb.tar.gz",
"url": "https://gethstore.blob.core.windows.net/builds/geth-darwin-amd64-1.6.0-facc47cb.tar.gz",
"type": "tar",
"md5": "6a797a930a0930ec88b810e6b2d204eb",
"bin": "geth-darwin-amd64-1.5.9-a07539fb/geth"
"md5": "446308f1d702bf5d30892bda43c25d23",
"bin": "geth-darwin-amd64-1.6.0-facc47cb/geth"
},
"bin": "geth",
"commands": {
"sanity": {
"args": ["version"],
"output": [ "Geth", "1.5.9" ]
"output": [ "Geth", "1.6.0" ]
}
}
}
},
"win": {
"x64": {
"download": {
"url": "https://gethstore.blob.core.windows.net/builds/geth-windows-amd64-1.5.9-a07539fb.zip",
"url": "https://gethstore.blob.core.windows.net/builds/geth-windows-amd64-1.6.0-facc47cb.zip",
"type": "zip",
"md5": "057cdfdf4347ec9d5c0bf0b964f1b97b",
"bin": "geth-windows-amd64-1.5.9-a07539fb\\geth.exe"
"md5": "e4bb82c4d7078269a932cb7d46c5acb4",
"bin": "geth-windows-amd64-1.6.0-facc47cb\\geth.exe"
},
"bin": "geth.exe",
"commands": {
"sanity": {
"args": ["version"],
"output": [ "Geth", "1.5.9" ]
"output": [ "Geth", "1.6.0" ]
}
}
},
"ia32": {
"download": {
"url": "https://gethstore.blob.core.windows.net/builds/geth-windows-386-1.5.9-a07539fb.zip",
"url": "https://gethstore.blob.core.windows.net/builds/geth-windows-386-1.6.0-facc47cb.zip",
"type": "zip",
"md5": "fa3511985215e151bafdc080e9b1fef6",
"bin": "geth-windows-386-1.5.9-a07539fb\\geth.exe"
"md5": "0935e22c5626c73b9f0b556b3323c71a",
"bin": "geth-windows-386-1.6.0-facc47cb\\geth.exe"
},
"bin": "geth.exe",
"commands": {
"sanity": {
"args": ["version"],
"output": [ "Geth", "1.5.9" ]
"output": [ "Geth", "1.6.0" ]
}
}
}
Expand Down
8 changes: 5 additions & 3 deletions tests/_base.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,11 @@ const startGeth = function* () {
gethPath,
balance: 5,
genesisBlock: {
difficulty: '0x1',
extraData: '0x1',
config: {
chainId: 33333,
},
difficulty: '0x01',
extraData: '0x01',
},
gethOptions: {
port: 58546,
Expand Down Expand Up @@ -397,4 +400,3 @@ const Utils = {
}

};

0 comments on commit 313b201

Please sign in to comment.