Home
Forums
New posts
Search forums
What's new
New posts
Latest activity
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Home
Forums
Brown Cafe UPS Forum
UPS Union Issues
Inflation
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="BadIdeaGuy" data-source="post: 6003471" data-attributes="member: 73381"><p>This is the relevant part of the source code:</p><p></p><p>[CODE=c]CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)</p><p>{</p><p> int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;</p><p> // Force block reward to zero when right shift is undefined.</p><p> if (halvings >= 64)</p><p> return 0;</p><p></p><p> CAmount nSubsidy = 50 * COIN;</p><p> // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.</p><p> nSubsidy >>= halvings;</p><p> return nSubsidy;</p><p>}</p><p></p><p>// consensusParams.nSubsidyHalvingInterval = 210000.[/CODE]</p><p></p><p>That code absolutely CAN be changed.</p><p></p><p>Evidence?</p><p></p><p><a href="https://github.com/bitcoin/bitcoin/pull/3842" target="_blank">https://github.com/bitcoin/bitcoin/pull/3842</a></p><p></p><p>So Satoshi’s original code would have doubled the supply cap due to a bug after about 250 years.</p><p></p><p>Which means a BIP to modify the supply cap is ABSOLUTELY possible.</p></blockquote><p></p>
[QUOTE="BadIdeaGuy, post: 6003471, member: 73381"] This is the relevant part of the source code: [CODE=c]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; return nSubsidy; } // consensusParams.nSubsidyHalvingInterval = 210000.[/CODE] That code absolutely CAN be changed. Evidence? [URL='https://github.com/bitcoin/bitcoin/pull/3842'][/URL] So Satoshi’s original code would have doubled the supply cap due to a bug after about 250 years. Which means a BIP to modify the supply cap is ABSOLUTELY possible. [/QUOTE]
Insert quotes…
Verification
Post reply
Home
Forums
Brown Cafe UPS Forum
UPS Union Issues
Inflation
Top