diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2020-06-26 15:12:06 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2020-06-26 15:25:22 +0000 |
commit | 8e906f14af22aaccc58de9faa0c17d4c7228cccc (patch) | |
tree | 2a49887e597218c0cd159b2fd2680600f491df67 /bip-0008.mediawiki | |
parent | a59aaceffceaccca87a9efbff26e5af157485914 (diff) |
BIP 8: Remove impossible direct path from DEFINED to FAILING
Diffstat (limited to 'bip-0008.mediawiki')
-rw-r--r-- | bip-0008.mediawiki | 5 |
1 files changed, 1 insertions, 4 deletions
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; } |