<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/blockchain_utilities/blockchain_import.cpp, branch v0.14.1.1</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=v0.14.1.1</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.14.1.1'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2019-04-07T13:48:19Z</updated>
<entry>
<title>blockchain_import: error out if preparing to handle blocks fails</title>
<updated>2019-04-07T13:48:19Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2019-04-07T13:47:17Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=bea1918a05a565e62ae682706cf98e32507191ea'/>
<id>urn:sha1:bea1918a05a565e62ae682706cf98e32507191ea</id>
<content type='text'>
Coverity 197562
</content>
</entry>
<entry>
<title>Make difficulty 128 bit instead of 64 bit</title>
<updated>2019-03-24T21:03:19Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2019-01-31T10:44:08Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=91f4c7f45f794fc7bee99356e56853369c98c410'/>
<id>urn:sha1:91f4c7f45f794fc7bee99356e56853369c98c410</id>
<content type='text'>
Based on Boolberry work by:
  jahrsg &lt;jahr@jahr.me&gt;
  cr.zoidberg &lt;crypto.zoidberg@gmail.com&gt;
</content>
</entry>
<entry>
<title>Update 2019 copyright</title>
<updated>2019-03-05T21:05:34Z</updated>
<author>
<name>binaryFate</name>
<email>binaryfate@users.noreply.github.com</email>
</author>
<published>2019-03-05T21:05:34Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1f2930ce0bec07e28958c059444151ad4968e1e6'/>
<id>urn:sha1:1f2930ce0bec07e28958c059444151ad4968e1e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>core: avoid double parsing blocks after hoh</title>
<updated>2019-03-05T11:58:13Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-11-23T11:15:04Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=238401d4e950dad6a243fb895027dd26d2992ee6'/>
<id>urn:sha1:238401d4e950dad6a243fb895027dd26d2992ee6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Avoid repeated (de)serialization when syncing</title>
<updated>2019-03-05T11:57:55Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-11-11T14:51:03Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b044d03a51e1dc64bebe2461813e0cfc50f71b0d'/>
<id>urn:sha1:b044d03a51e1dc64bebe2461813e0cfc50f71b0d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ArticMine's new block weight algorithm</title>
<updated>2019-03-04T09:33:58Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2019-01-21T17:18:50Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b8787f430262520a9e81267802b869b1a7cde245'/>
<id>urn:sha1:b8787f430262520a9e81267802b869b1a7cde245</id>
<content type='text'>
This curbs runaway growth while still allowing substantial
spikes in block weight

Original specification from ArticMine:

here is the scaling proposal
Define: LongTermBlockWeight
Before fork:
LongTermBlockWeight = BlockWeight
At or after fork:
LongTermBlockWeight = min(BlockWeight, 1.4*LongTermEffectiveMedianBlockWeight)
Note: To avoid possible consensus issues over rounding the LongTermBlockWeight for a given block should be calculated to the nearest byte, and stored as a integer in the block itself. The stored LongTermBlockWeight is then used for future calculations of the LongTermEffectiveMedianBlockWeight and not recalculated each time.
Define:   LongTermEffectiveMedianBlockWeight
LongTermEffectiveMedianBlockWeight = max(300000, MedianOverPrevious100000Blocks(LongTermBlockWeight))
Change Definition of EffectiveMedianBlockWeight
From (current definition)
EffectiveMedianBlockWeight  = max(300000, MedianOverPrevious100Blocks(BlockWeight))
To (proposed definition)
EffectiveMedianBlockWeight  = min(max(300000, MedianOverPrevious100Blocks(BlockWeight)), 50*LongTermEffectiveMedianBlockWeight)
Notes:
1) There are no other changes to the existing penalty formula, median calculation, fees etc.
2) There is the requirement to store the LongTermBlockWeight of a block unencrypted in the block itself. This  is to avoid possible consensus issues over rounding and also to prevent the calculations from becoming unwieldy as we move away from the fork.
3) When the  EffectiveMedianBlockWeight cap is reached it is still possible to mine blocks up to 2x the EffectiveMedianBlockWeight by paying the corresponding penalty.

Note: the long term block weight is stored in the database, but not in the actual block itself,
since it requires recalculating anyway for verification.
</content>
</entry>
<entry>
<title>remove some unused code</title>
<updated>2018-11-23T15:37:36Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-11-23T13:47:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=d4f50cb109c45c1f50700cbe2e88ec891eb7d469'/>
<id>urn:sha1:d4f50cb109c45c1f50700cbe2e88ec891eb7d469</id>
<content type='text'>
Found by codacy.com
</content>
</entry>
<entry>
<title>blockchain_utilities: fix logs and cout output colliding</title>
<updated>2018-10-27T17:40:01Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-10-27T17:38:03Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=0a95cdaa803ac06d9fb29aff7f54e4a316cba8c3'/>
<id>urn:sha1:0a95cdaa803ac06d9fb29aff7f54e4a316cba8c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>blocks: use auto-generated .c files instead of 'LD -r -b binary'</title>
<updated>2018-10-21T22:12:00Z</updated>
<author>
<name>xiphon</name>
<email>xiphon@protonmail.com</email>
</author>
<published>2018-10-09T12:33:39Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=fd62b6e79f87503bf27a3c8709aaf9cc4ae36146'/>
<id>urn:sha1:fd62b6e79f87503bf27a3c8709aaf9cc4ae36146</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Merge pull request #4472"</title>
<updated>2018-10-08T19:39:54Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-10-08T19:39:54Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ac5674524a485c069800912f79b1b44840e391fc'/>
<id>urn:sha1:ac5674524a485c069800912f79b1b44840e391fc</id>
<content type='text'>
This reverts commit 79d46c4d551a9b1261801960095bf4d24967211a, reversing
changes made to c9fc61dbb56cca442c775faa2554a7460879b637.
</content>
</entry>
</feed>
