Skip to content

Commit

Permalink
Fix CAI subsidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Lovok committed Apr 26, 2014
1 parent 6a0686e commit f07db3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2pool/bitcoin/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def get_caishensubsidy(bnHeight):
elif bnHeight > 358363:
nSubsidy = 10

return int(nSubsidy * 1000000)
return int(nSubsidy * 100000000)

def get_subsidy(nCap, nMaxSubsidy, bnTarget):
bnLowerBound = 0.01
Expand Down

0 comments on commit f07db3c

Please sign in to comment.