This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<h1>Esto es un titulo de saludo</h1> | |
<p>Hola mundo</p> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that "nelsondcg.id" is my Blockstack ID. https://onename.com/nelsondcg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams) | |
{ | |
int halvings = nHeight / consensusParams.nSubsidyHalvingInterval; | |
// Force block reward to zero when right shift is undefined. | |
if (halvings >= 64) | |
return 0; | |
CAmount nSubsidy = 50 * COIN; | |
// Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years. | |
nSubsidy >>= halvings; |