diff --git a/bip-0008.mediawiki b/bip-0008.mediawiki
index 4d7c85ffb2..612fd4200b 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;
}
diff --git a/bip-0008/states.png b/bip-0008/states.png
index 0e2ff02608..76f6cb7241 100644
Binary files a/bip-0008/states.png and b/bip-0008/states.png differ
diff --git a/bip-0008/states.svg b/bip-0008/states.svg
index 1824064629..f2e4b34132 100644
--- a/bip-0008/states.svg
+++ b/bip-0008/states.svg
@@ -25,7 +25,7 @@
DEFINED
- startheight <= height < timeoutheight
+ startheight <= height
STARTED
@@ -43,8 +43,6 @@
FAILING
-
- timeoutheight <= height
(lockinontimeout == false) AND (timeoutheight <= height)