Skip to content

Commit

Permalink
Merge pull request #5 from funkshelper/master
Browse files Browse the repository at this point in the history
42-coin-limit
  • Loading branch information
fourtytwo42 committed Sep 23, 2015
2 parents 2fafd66 + a2b7324 commit 10247d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
42 - a fork of Litecoin version with fast block time and faster confirmations (2 confirmations needed instead of 6). Like Litecoin it uses scrypt as a proof of work scheme.
42-limited-edition - a fork of Litecoin version with fast block time and faster confirmations (2 confirmations needed instead of 6). Like Litecoin it uses scrypt as a proof of work scheme.

- 42 second block target
- Difficulty retargets every 7 minutes
- Total coins will be only 42
- Total coins will be only 42 -- this time for real yo!
- The default ports are 24242 (connect) and 4242 (json rpc).


Expand Down
4 changes: 4 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,10 @@ int64 static GetBlockValue(int nHeight, int64 nFees)
{
nSubsidy = 0.00042 * COIN;
}
if(nHeight >= 990382)
{
nSubsidy = 0.00;
}
return nSubsidy + nFees;
}

Expand Down

0 comments on commit 10247d0

Please sign in to comment.