<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/contrib, branch v0.14.0.2</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.0.2</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.14.0.2'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2019-02-22T15:51:04Z</updated>
<entry>
<title>cmake: ARCH_ID fixes for cross compilation</title>
<updated>2019-02-22T15:51:04Z</updated>
<author>
<name>TheCharlatan</name>
<email>seb.kung@gmail.com</email>
</author>
<published>2019-02-22T15:18:32Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=0cb6a763c1626848a833bccb33023bad49988850'/>
<id>urn:sha1:0cb6a763c1626848a833bccb33023bad49988850</id>
<content type='text'>
</content>
</entry>
<entry>
<title>mlocker: fix access to global lock map after dtor on exit</title>
<updated>2019-02-17T10:52:48Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-11-22T01:39:12Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1de62cb1369ecf5e6eb4cef5c7fc378879a3dfe1'/>
<id>urn:sha1:1de62cb1369ecf5e6eb4cef5c7fc378879a3dfe1</id>
<content type='text'>
as the lock, it now leaks
</content>
</entry>
<entry>
<title>mlocker: fix dtor ordering problem</title>
<updated>2019-02-17T10:52:46Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-11-02T12:59:06Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5544bb8359bf4c6be18e9623d97cb5357c9ddffb'/>
<id>urn:sha1:5544bb8359bf4c6be18e9623d97cb5357c9ddffb</id>
<content type='text'>
leak the mutex instead, it's a one off
</content>
</entry>
<entry>
<title>ArticMine's new block weight algorithm</title>
<updated>2019-02-12T12:15:54Z</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=ebc60a098d40506fdd0c5974a8644728d502e024'/>
<id>urn:sha1:ebc60a098d40506fdd0c5974a8644728d502e024</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.
</content>
</entry>
<entry>
<title>Merge pull request #4670</title>
<updated>2018-10-20T18:45:14Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-10-20T18:45:14Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=4ad6b662837a5901c9f2deece43356f064d13f0f'/>
<id>urn:sha1:4ad6b662837a5901c9f2deece43356f064d13f0f</id>
<content type='text'>
fea60d6a console_handler: add a global log when exiting via EOF (moneromooo-monero)
</content>
</entry>
<entry>
<title>console_handler: add a global log when exiting via EOF</title>
<updated>2018-10-20T09:14:08Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-10-20T09:12:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=fea60d6ab25dc68f8092827b65482cdecf7234dc'/>
<id>urn:sha1:fea60d6ab25dc68f8092827b65482cdecf7234dc</id>
<content type='text'>
It's a common confusion point for users which run monerod
without stdin and with --detach
</content>
</entry>
<entry>
<title>ANSI colors in Windows 10 (v0.13)</title>
<updated>2018-10-16T20:39:21Z</updated>
<author>
<name>iDunk5400</name>
<email>iDunk5400@users.noreply.github.com</email>
</author>
<published>2018-10-16T20:39:21Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1e8a9d7dff9437ca6350631f90e8051b7b3b6270'/>
<id>urn:sha1:1e8a9d7dff9437ca6350631f90e8051b7b3b6270</id>
<content type='text'>
</content>
</entry>
<entry>
<title>build: use ARCH 'native' by default, allow to configure and override it</title>
<updated>2018-10-14T20:24:54Z</updated>
<author>
<name>xiphon</name>
<email>xiphon@protonmail.com</email>
</author>
<published>2018-10-13T09:46:19Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=82037f2365886b5169f5e02660c6811567d60725'/>
<id>urn:sha1:82037f2365886b5169f5e02660c6811567d60725</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #4519</title>
<updated>2018-10-08T20:07:23Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-10-08T20:02:11Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=49c11b2248ed0026ec185fc9f45c99e934587808'/>
<id>urn:sha1:49c11b2248ed0026ec185fc9f45c99e934587808</id>
<content type='text'>
17701864 Depends: build hidapi with -fPIC (iDunk5400)
</content>
</entry>
<entry>
<title>Merge pull request #4510</title>
<updated>2018-10-07T18:04:10Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-10-07T17:51:09Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=24e519b9b6076334a652cf4b73cc0b5dc1a45cd6'/>
<id>urn:sha1:24e519b9b6076334a652cf4b73cc0b5dc1a45cd6</id>
<content type='text'>
21a624af Consolidate HID depends makefiles into single recipe (TheCharlatan)
</content>
</entry>
</feed>
