<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/contrib/epee/src, branch v0.14.0.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.0.1</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.14.0.1'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2019-02-17T10:52:48Z</updated>
<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>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>Merge pull request #4459</title>
<updated>2018-09-29T20:17:00Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-09-29T20:17:00Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=f0b3bbf808ec598ec191326767e0779a4a4037e4'/>
<id>urn:sha1:f0b3bbf808ec598ec191326767e0779a4a4037e4</id>
<content type='text'>
bcf3f6af fuzz_tests: catch unhandled exceptions (moneromooo-monero)
3ebd05d4 miner: restore stream flags after changing them (moneromooo-monero)
a093092e levin_protocol_handler_async: do not propagate exception through dtor (moneromooo-monero)
1eebb82b net_helper: do not propagate exceptions through dtor (moneromooo-monero)
fb6a3630 miner: do not propagate exceptions through dtor (moneromooo-monero)
2e2139ff epee: do not propagate exception through dtor (moneromooo-monero)
0749a8bd db_lmdb: do not propagate exceptions in dtor (moneromooo-monero)
1b0afeeb wallet_rpc_server: exit cleanly on unhandled exceptions (moneromooo-monero)
418a9936 unit_tests: catch unhandled exceptions (moneromooo-monero)
ea7f9543 threadpool: do not propagate exceptions through the dtor (moneromooo-monero)
6e855422 gen_multisig: nice exit on unhandled exception (moneromooo-monero)
53df2deb db_lmdb: catch error in mdb_stat calls during migration (moneromooo-monero)
e67016dd blockchain_blackball: catch failure to commit db transaction (moneromooo-monero)
661439f4 mlog: don't remove old logs if we failed to rename the current file (moneromooo-monero)
5fdcda50 easylogging++: test for NULL before dereference (moneromooo-monero)
7ece1550 performance_test: fix bad last argument calling add_arg (moneromooo-monero)
a085da32 unit_tests: add check for page size &gt; 0 before dividing (moneromooo-monero)
d8b1ec8b unit_tests: use std::shared_ptr to shut coverity up about leaks (moneromooo-monero)
02563bf4 simplewallet: top level exception catcher to print nicer messages (moneromooo-monero)
c57a65b2 blockchain_blackball: fix shift range for 32 bit archs (moneromooo-monero)
</content>
</entry>
<entry>
<title>mlog: don't remove old logs if we failed to rename the current file</title>
<updated>2018-09-27T17:28:47Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-09-27T14:58:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=661439f4e057f06cd637bd5d467ef70f213755aa'/>
<id>urn:sha1:661439f4e057f06cd637bd5d467ef70f213755aa</id>
<content type='text'>
Coverity 188348
</content>
</entry>
<entry>
<title>osx compilation fix: missing boost libs added</title>
<updated>2018-09-26T19:23:01Z</updated>
<author>
<name>Dusan Klinec</name>
<email>dusan.klinec@gmail.com</email>
</author>
<published>2018-09-25T17:30:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b2972927ea0bff9d72594ed23f97e302a0022440'/>
<id>urn:sha1:b2972927ea0bff9d72594ed23f97e302a0022440</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #4377</title>
<updated>2018-09-21T18:41:17Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-09-21T18:41:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b88bbf59c3821f57bc2a3890883bc279e523f940'/>
<id>urn:sha1:b88bbf59c3821f57bc2a3890883bc279e523f940</id>
<content type='text'>
4d52ec0c mlog: do not display http errors by default (moneromooo-monero)
</content>
</entry>
<entry>
<title>mlog: do not display http errors by default</title>
<updated>2018-09-14T09:23:00Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-06-17T15:58:42Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=4d52ec0ca473fb9ca0868be1afb4c23d4aa06e9b'/>
<id>urn:sha1:4d52ec0ca473fb9ca0868be1afb4c23d4aa06e9b</id>
<content type='text'>
They're controllable by potential attackers and would just spam
</content>
</entry>
<entry>
<title>wipeable_string: add hex_to_pod function</title>
<updated>2018-09-12T09:26:09Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-08-27T08:43:56Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=07ec748c8245b42de0ec9964b2f0062c0034f2f8'/>
<id>urn:sha1:07ec748c8245b42de0ec9964b2f0062c0034f2f8</id>
<content type='text'>
</content>
</entry>
</feed>
