<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/p2p, branch v0.13.0.1-RC1</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.13.0.1-RC1</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.13.0.1-RC1'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2018-08-15T22:06:17Z</updated>
<entry>
<title>Merge pull request #4089</title>
<updated>2018-08-15T22:06:17Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2018-08-15T22:06:17Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b586ae1310baea79aa4c0370684f6c61d3efa539'/>
<id>urn:sha1:b586ae1310baea79aa4c0370684f6c61d3efa539</id>
<content type='text'>
909398e p2p: connect via the bound ip, if any (moneromooo-monero)
</content>
</entry>
<entry>
<title>Merge pull request #4075</title>
<updated>2018-07-19T19:10:20Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2018-07-19T19:10:20Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=f6d7e87b67645be02d3e9c274ff4bd842aacb09e'/>
<id>urn:sha1:f6d7e87b67645be02d3e9c274ff4bd842aacb09e</id>
<content type='text'>
438d52d remove epee from link lines where it's redundant (moneromooo-monero)
</content>
</entry>
<entry>
<title>Merge pull request #3854</title>
<updated>2018-07-19T18:35:25Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2018-07-19T18:35:25Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=025187e6c9206fc970b66f7459919ce0131fc612'/>
<id>urn:sha1:025187e6c9206fc970b66f7459919ce0131fc612</id>
<content type='text'>
149da42 db_lmdb: enable batch transactions by default (stoffu)
34cb6b4 add --regtest and --fixed-difficulty for regression testing (vicsn)
9e1403e update get_info RPC and bump RPC version (vicsn)
207b66e first new functional tests (vicsn)
</content>
</entry>
<entry>
<title>p2p: connect via the bound ip, if any</title>
<updated>2018-07-02T17:06:04Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-07-02T17:04:44Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=909398efc79cb1fa92e330e9a50a316ca5858953'/>
<id>urn:sha1:909398efc79cb1fa92e330e9a50a316ca5858953</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add --regtest and --fixed-difficulty for regression testing</title>
<updated>2018-06-29T08:06:11Z</updated>
<author>
<name>victorsintnicolaas</name>
<email>vicsn@users.noreply.github.com</email>
</author>
<published>2018-06-14T19:11:49Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=34cb6b4b703f30be89388f4cdcc5d7b6780ee988'/>
<id>urn:sha1:34cb6b4b703f30be89388f4cdcc5d7b6780ee988</id>
<content type='text'>
on_generateblocks RPC call combines functionality from the on_getblocktemplate and on_submitblock RPC calls to allow rapid block creation. Difficulty is set permanently to 1 for regtest.
Makes use of FAKECHAIN network type, but takes hard fork heights from mainchain
Default reserve_size in generate_blocks RPC call is now 1. If it is 0, the following error occurs 'Failed to calculate offset for'.
Queries hard fork heights info of other network types
</content>
</entry>
<entry>
<title>remove epee from link lines where it's redundant</title>
<updated>2018-06-28T15:45:22Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-06-28T15:37:10Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=438d52deaf2657fb7c196d505f9133dabdb0a258'/>
<id>urn:sha1:438d52deaf2657fb7c196d505f9133dabdb0a258</id>
<content type='text'>
For some reason, this confuses and kills ASAN on startup
as it thinks const uint8_t ipv4_network_address::ID is
defined multiple times.
</content>
</entry>
<entry>
<title>Merge pull request #3982</title>
<updated>2018-06-27T20:38:23Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2018-06-27T20:38:23Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=3ad4ecd4ff52f011ee94e0e80754b965b82f072b'/>
<id>urn:sha1:3ad4ecd4ff52f011ee94e0e80754b965b82f072b</id>
<content type='text'>
08b85a8 cryptonote_config: add get_config to refactor x = testnet ? config::testnet::X : stagenet ? config::stagenet::X : config::X (stoffu)
0cf80ba net_node: resolve host for node addresses given via command line flags (stoffu)
</content>
</entry>
<entry>
<title>Merge pull request #3861</title>
<updated>2018-06-19T17:56:31Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2018-06-19T17:56:31Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=cb130c759059e670fd30a10a436fb286fd556da4'/>
<id>urn:sha1:cb130c759059e670fd30a10a436fb286fd556da4</id>
<content type='text'>
de1ffe0 p2p: warn when no incoming connections are seen for a while (moneromooo-monero)
</content>
</entry>
<entry>
<title>net_node: resolve host for node addresses given via command line flags</title>
<updated>2018-06-11T11:17:13Z</updated>
<author>
<name>stoffu</name>
<email>stoffu@protonmail.ch</email>
</author>
<published>2018-06-11T03:43:18Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=0cf80baea4c3aafe4480a7546c47041bd3584512'/>
<id>urn:sha1:0cf80baea4c3aafe4480a7546c47041bd3584512</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cryptonote_config: add get_config to refactor x = testnet ? config::testnet::X : stagenet ? config::stagenet::X : config::X</title>
<updated>2018-06-11T11:17:02Z</updated>
<author>
<name>stoffu</name>
<email>stoffu@protonmail.ch</email>
</author>
<published>2018-06-11T03:16:29Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=08b85a8e00c0b3e5bb7c4d05861f8a42593cecf1'/>
<id>urn:sha1:08b85a8e00c0b3e5bb7c4d05861f8a42593cecf1</id>
<content type='text'>
</content>
</entry>
</feed>
