diff options
author | Zachary Michaels <mikezackles@gmail.com> | 2014-09-09 16:29:24 -0400 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-09-15 15:55:07 +0200 |
commit | 95a2701ec5ae2417390a3f12f638240510decdb9 (patch) | |
tree | 8b05282e3f4c1d0560d8853724aaeb65b86a4200 /src/cryptonote_config.h | |
parent | Make P2P use the testnet data dir (diff) | |
download | monero-95a2701ec5ae2417390a3f12f638240510decdb9.tar.xz |
Change testnet prefix
Diffstat (limited to 'src/cryptonote_config.h')
-rw-r--r-- | src/cryptonote_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index f8f35470d..1ac8ab328 100644 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -117,7 +117,7 @@ namespace config uint64_t const DEFAULT_DUST_THRESHOLD = 5000000000; // 5 * 10^9 std::string const P2P_REMOTE_DEBUG_TRUSTED_PUB_KEY = "0000000000000000000000000000000000000000000000000000000000000000"; - uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX = 18; // addresses start with "4" + uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX = 18; uint16_t const P2P_DEFAULT_PORT = 18080; uint16_t const RPC_DEFAULT_PORT = 18081; boost::uuids::uuid const NETWORK_ID = { { @@ -128,7 +128,7 @@ namespace config namespace testnet { - uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX = 19; // addresses start with "5" + uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX = 53; uint16_t const P2P_DEFAULT_PORT = 28080; uint16_t const RPC_DEFAULT_PORT = 28081; boost::uuids::uuid const NETWORK_ID = { { |