Skip to content

Commit

Permalink
BIP 8: Remove impossible direct path from DEFINED to FAILING
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed Jun 26, 2020
1 parent a59aace commit 8e906f1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions bip-0008.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Binary file modified bip-0008/states.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions bip-0008/states.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8e906f1

Please sign in to comment.