Skip to content

Commit 8e906f1

Browse files
committed
BIP 8: Remove impossible direct path from DEFINED to FAILING
1 parent a59aace commit 8e906f1

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

bip-0008.mediawiki

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,9 @@ Otherwise, the next state depends on the previous state:
110110
111111
switch (GetStateForBlock(GetAncestorAtHeight(block, block.height - 2016))) {
112112
113-
We remain in the initial state until either we pass the start block height or the timeout height.
113+
We remain in the initial state until we reach the start block height.
114114
115115
case DEFINED:
116-
if (block.height >= timeoutheight) {
117-
return (lockinontimeout == true) ? LOCKED_IN : FAILING;
118-
}
119116
if (block.height >= startheight) {
120117
return STARTED;
121118
}

bip-0008/states.png

-2.4 KB
Loading

bip-0008/states.svg

Lines changed: 1 addition & 3 deletions
Loading

0 commit comments

Comments
 (0)