From 76218959ab36828f340a113e3b3b7dffabb1f36a Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 1 Apr 2015 16:59:14 +0200 Subject: eth: update cpp bootnode address --- eth/backend.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eth') diff --git a/eth/backend.go b/eth/backend.go index b1fa68e72..cc4f807bf 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -32,8 +32,8 @@ var ( defaultBootNodes = []*discover.Node{ // ETH/DEV cmd/bootnode discover.MustParseNode("enode://09fbeec0d047e9a37e63f60f8618aa9df0e49271f3fadb2c070dc09e2099b95827b63a8b837c6fd01d0802d457dd83e3bd48bd3e6509f8209ed90dabbc30e3d3@52.16.188.185:30303"), - // ETH/DEV cpp-ethereum (poc-8.ethdev.com) - discover.MustParseNode("enode://4a44599974518ea5b0f14c31c4463692ac0329cb84851f3435e6d1b18ee4eae4aa495f846a0fa1219bd58035671881d44423876e57db2abd57254d0197da0ebe@5.1.83.226:30303"), + // ETH/DEV cpp-ethereum (poc-9.ethdev.com) + discover.MustParseNode("enode://487611428e6c99a11a9795a6abe7b529e81315ca6aad66e2a2fc76e3adf263faba0d35466c2f8f68d561dbefa8878d4df5f1f2ddb1fbeab7f42ffb8cd328bd4a@5.1.83.226:30303"), } ) -- cgit v1.2.3 From 8e961df2830a57fadeafc2f74aca19a820b104cb Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 1 Apr 2015 17:10:42 +0200 Subject: bumped network protocol --- eth/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eth') diff --git a/eth/protocol.go b/eth/protocol.go index a0ab177cd..844641d04 100644 --- a/eth/protocol.go +++ b/eth/protocol.go @@ -14,7 +14,7 @@ import ( const ( ProtocolVersion = 60 - NetworkId = 0 + NetworkId = 3 ProtocolLength = uint64(8) ProtocolMaxMsgSize = 10 * 1024 * 1024 maxHashes = 256 -- cgit v1.2.3 From 216ea425e4579f95c01572d2da0d83890a05c162 Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 1 Apr 2015 17:36:56 +0200 Subject: corrected --- eth/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eth') diff --git a/eth/protocol.go b/eth/protocol.go index 844641d04..a0ab177cd 100644 --- a/eth/protocol.go +++ b/eth/protocol.go @@ -14,7 +14,7 @@ import ( const ( ProtocolVersion = 60 - NetworkId = 3 + NetworkId = 0 ProtocolLength = uint64(8) ProtocolMaxMsgSize = 10 * 1024 * 1024 maxHashes = 256 -- cgit v1.2.3