From 8e906f14af22aaccc58de9faa0c17d4c7228cccc Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 26 Jun 2020 15:12:06 +0000 Subject: BIP 8: Remove impossible direct path from DEFINED to FAILING --- bip-0008.mediawiki | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'bip-0008.mediawiki') diff --git a/bip-0008.mediawiki b/bip-0008.mediawiki index 4d7c85f..612fd42 100644 --- a/bip-0008.mediawiki +++ b/bip-0008.mediawiki @@ -110,12 +110,9 @@ Otherwise, the next state depends on the previous state: switch (GetStateForBlock(GetAncestorAtHeight(block, block.height - 2016))) { -We remain in the initial state until either we pass the start block height or the timeout height. +We remain in the initial state until we reach the start block height. case DEFINED: - if (block.height >= timeoutheight) { - return (lockinontimeout == true) ? LOCKED_IN : FAILING; - } if (block.height >= startheight) { return STARTED; } -- cgit v1.2.3