From 6898b6462897d28bd6fcf4bf06422f952a096645 Mon Sep 17 00:00:00 2001 From: Ignotus Peverell Date: Tue, 3 Jul 2018 22:25:57 +0100 Subject: [PATCH] Typo fix in T3 initial difficulty --- core/src/global.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/global.rs b/core/src/global.rs index 8144eab6..f1ab3131 100644 --- a/core/src/global.rs +++ b/core/src/global.rs @@ -161,7 +161,7 @@ pub fn initial_block_difficulty() -> u64 { ChainTypes::UserTesting => TESTING_INITIAL_DIFFICULTY, ChainTypes::Testnet1 => TESTING_INITIAL_DIFFICULTY, ChainTypes::Testnet2 => TESTNET2_INITIAL_DIFFICULTY, - ChainTypes::Testnet3 => TESTNET2_INITIAL_DIFFICULTY, + ChainTypes::Testnet3 => TESTNET3_INITIAL_DIFFICULTY, ChainTypes::Mainnet => INITIAL_DIFFICULTY, } }