diff --git a/index.html b/index.html index a5ff134..51b1ade 100644 --- a/index.html +++ b/index.html @@ -308,12 +308,16 @@
If the claim is an update or support to an already active claim, or if it is the first claim for a name, the claim becomes active as soon as it is accepted. Otherwise it becomes active at the block heigh determined by the following formula:
-C + min(4032, floor((H-T) / 32))
C + min(4032, floor((H-T) / 32))
+
-Where: -- C = claim height (height when the claim was accepted) -- H = current height -- T = takeover height (the most recent height at which the claimtrie state for the name changed)
+Where:
+ +In plain English, the delay before a claim becomes active is equal to the claim’s height minus height of the last takeover, divided by 32. The delay is capped at 4032 blocks, which is 7 days of blocks at 2.5 minutes per block (our target block time). The max delay is reached 224 (7x32) days after the last takeover. The goal of this delay function is to give long-standing claimants time to respond to takeover attempts, while still keeping takeover times reasonable and allowing recent or contentious claims to be taken over quickly.
@@ -836,6 +840,8 @@ Talk about how lightning can be used for streaming payments.TODO
+Edit this on Github: https://github.com/lbryio/spec
+