From 3260dbff03cc025b8bb94fd5e490082a1079f09c Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 6 May 2021 09:15:32 +1000 Subject: [PATCH] Update to NU5 mainnet network protocol version (#9) This change should allow the seeder to connect to the network until early 2022. The `version`, `verack`, `getaddrs`, and `addrs` messages haven't changed, so the seeder is trivially compatible with future network upgrades. --- zcash/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcash/client.go b/zcash/client.go index ccb73fc..03948d1 100644 --- a/zcash/client.go +++ b/zcash/client.go @@ -32,7 +32,7 @@ var defaultPeerConfig = &peer.Config{ ChainParams: nil, Services: 0, TrickleInterval: time.Second * 10, - ProtocolVersion: 170011, // Heartwood + ProtocolVersion: 170015, // NU5 mainnet } var (