From 4456764bd3c4215435b3acff62675e7b1bd67280 Mon Sep 17 00:00:00 2001 From: Patrick Lodder Date: Fri, 1 Aug 2014 18:39:17 +0200 Subject: [PATCH] Set chain id to 0x0062 0x0062 is 98 in decimal. Dedicated to Josh Wise. --- src/core.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core.h b/src/core.h index d064bc868..9aaedfeaf 100644 --- a/src/core.h +++ b/src/core.h @@ -34,7 +34,8 @@ static const int BLOCK_VERSION_AUXPOW = (1 << 8); static const int BLOCK_VERSION_CHAIN_START = (1 << 16); static const int BLOCK_VERSION_CHAIN_END = (1 << 30); -static const int AUXPOW_CHAIN_ID = 0x0000; //TODO change me +// DogeCoin aux chain ID = 0x0062 (98) +static const int AUXPOW_CHAIN_ID = 0x0062; static const int AUXPOW_START_MAINNET = INT_MAX; //TODO change me static const int AUXPOW_START_TESTNET = 158100;