From bedbe1bc9407c5fef359df5914917c3a404ecc1b Mon Sep 17 00:00:00 2001 From: Adam Winter Date: Sat, 12 Jan 2019 11:34:10 -0800 Subject: [PATCH 1/2] Update consensus.md --- documents/resources/consensus.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/documents/resources/consensus.md b/documents/resources/consensus.md index 9e357d2..3688847 100644 --- a/documents/resources/consensus.md +++ b/documents/resources/consensus.md @@ -13,10 +13,6 @@ right = ripemd(intermediate[len(intermediate)/2:]) # and the right half proof = sha256(sha256(left + right)) # concatenate the two halves, and double-sha256() it again ``` -### Block Targeting +### Block Targeting & Difficulty Adjustment -_PR this_. - -### Difficulty Adjustment - -_PR this_. +The targeted time of each Lbry block is 2.5 mintues (150 seconds). Code used for the difficulty adjustment can be seen [here](https://github.com/lbryio/lbrycrd/blob/master/src/lbry.cpp). From 581ad51f0b68583df443e59f97cade2ff697e65a Mon Sep 17 00:00:00 2001 From: Adam Winter Date: Wed, 16 Jan 2019 08:39:35 -0800 Subject: [PATCH 2/2] Update consensus.md --- documents/resources/consensus.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documents/resources/consensus.md b/documents/resources/consensus.md index 3688847..ef4fde8 100644 --- a/documents/resources/consensus.md +++ b/documents/resources/consensus.md @@ -15,4 +15,4 @@ proof = sha256(sha256(left + right)) # concatenate the two halves, and double-s ### Block Targeting & Difficulty Adjustment -The targeted time of each Lbry block is 2.5 mintues (150 seconds). Code used for the difficulty adjustment can be seen [here](https://github.com/lbryio/lbrycrd/blob/master/src/lbry.cpp). +The targeted time of each Lbry block is 2.5 mintues (150 seconds). More information and links to source code [here](https://spec.lbry.io/#consensus).