Browse Source

Update proto version, seed IPs and magic

pull/4/head
Jonathan "Duke" Leto 5 years ago
parent
commit
855e1b02c7
  1. 27
      coin.h

27
coin.h

@ -1,5 +1,5 @@
// Copyright (c) 2018 The Bitcoin developers
// Copyright (c) 2018 The HUSH developers
// Copyright (c) 2018-2019 The Hush developers
// Distributed under the MIT/X11 software license, see the accompanying
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
@ -11,20 +11,33 @@
static const std::string mainnet_seeds[] = {"explorer.myhush.org",
"dnsseed.myhush.org",
"dnsseed.bleuzero.com",
"explorer.myhush.org",
""};
"64.120.113.130",
"209.58.144.205",
"94.130.35.94",
"188.165.212.101",
};
static const std::string testnet_seeds[] = {"stilgar.myhush.org",
""};
static const std::string testnet_seeds[] = {
"stilgar.myhush.org",
};
static const int mainnet_port = 18030;
static const int testnet_port = 28030;
static unsigned char pchMessageStart[4] = { 0x24, 0xe9, 0x27, 0x64 };
// old hush
//static unsigned char pchMessageStart[4] = { 0x24, 0xe9, 0x27, 0x64 };
// HUSH3: magic.d394d36e
static unsigned char pchMessageStart[4] = { 0xd3, 0x94, 0xd3, 0x6e };
static unsigned char pchMessageStart_testnet[4] = { 0xfa, 0x1a, 0xf9, 0xbf };
#define REQUIRE_VERSION 170002
static const int minimunClientVersion = 170002;
static const int PROTOCOL_VERSION = 170002;
static const int PROTOCOL_VERSION = 170007;
static const int INIT_PROTO_VERSION = 209;
#endif // __INCLUDED_COIN_H__

Loading…
Cancel
Save