Post
Topic
Board Development & Technical Discussion
Re: Bitcoin version 0.0.8
by
stwenhao
on 01/09/2023, 20:10:27 UTC
Quote
cause 0.0.8 does not have 100 as reward inside (unfortunately)
Quote
Code:
int64 nSubsidy = 10000 * CENT;
Note that you have 100 coins in this line, and 50 coins in next versions. Also note that "CENT" is just 0.01. And if you multiply 0.01 by 10000, you can get exactly 100.00.