<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/rpc, branch v0.18.3.0</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.18.3.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.18.3.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2023-08-17T15:18:12Z</updated>
<entry>
<title>Merge pull request #8891</title>
<updated>2023-08-17T15:18:12Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2023-08-17T15:18:12Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=894adef29588f20951a675fc25139ebb777493eb'/>
<id>urn:sha1:894adef29588f20951a675fc25139ebb777493eb</id>
<content type='text'>
842478c core_rpc_server: return ID of submitted block (jeffro256)
</content>
</entry>
<entry>
<title>Enforce restricted # pool txs served via RPC + optimize chunked reqs [release-v0.18]</title>
<updated>2023-07-09T06:38:18Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-12-14T00:08:56Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=f137a35984985232a3aae50cd4c7b47634866594'/>
<id>urn:sha1:f137a35984985232a3aae50cd4c7b47634866594</id>
<content type='text'>
- `/getblocks.bin` respects the `RESTRICTED_TX_COUNT` (=100) when
returning pool txs via a restricted RPC daemon.
- A restricted RPC daemon includes a max of `RESTRICTED_TX_COUNT` txs
in the `added_pool_txs` field, and returns any remaining pool hashes
in the `remaining_added_pool_txids` field. The client then requests
the remaining txs via `/gettransactions` in chunks.
- `/gettransactions` no longer does expensive no-ops for ALL pool txs
if the client requests a subset of pool txs. Instead it searches for
the txs the client explicitly requests.
- Reset `m_pool_info_query_time` when a user:
  (1) rescans the chain (so the wallet re-requests the whole pool)
  (2) changes the daemon their wallets points to (a new daemon would
      have a different view of the pool)
- `/getblocks.bin` respects the `req.prune` field when returning
pool txs.
- Pool extension fields in response to `/getblocks.bin` are optional
with default 0'd values.
</content>
</entry>
<entry>
<title>wallet2, RPC: Optimize RPC calls for periodic refresh from 3 down to 1 call [release-v0.18]</title>
<updated>2023-07-09T06:30:53Z</updated>
<author>
<name>rbrunner7</name>
<email>rbrunner@dreamshare.ch</email>
</author>
<published>2021-11-21T16:40:50Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=23f782b21113035b57e4560d6a9b522ac1f03cca'/>
<id>urn:sha1:23f782b21113035b57e4560d6a9b522ac1f03cca</id>
<content type='text'>
</content>
</entry>
<entry>
<title>core_rpc_server: return ID of submitted block</title>
<updated>2023-06-30T20:32:49Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2023-06-03T03:00:11Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=842478c5a922aa67dc0cf51f71128c42587021ec'/>
<id>urn:sha1:842478c5a922aa67dc0cf51f71128c42587021ec</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a size limit for tx_extra in tx pool</title>
<updated>2023-03-18T19:01:58Z</updated>
<author>
<name>tevador</name>
<email>tevador@gmail.com</email>
</author>
<published>2023-02-05T20:53:32Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5900ed3706caa1beeef88738e7b62194280af5d9'/>
<id>urn:sha1:5900ed3706caa1beeef88738e7b62194280af5d9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refactored rx-slow-hash.c</title>
<updated>2022-12-14T06:21:00Z</updated>
<author>
<name>SChernykh</name>
<email>sergey.v.chernykh@gmail.com</email>
</author>
<published>2022-12-10T17:30:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=f698f2b708be742afa286c65868a48f7ef80b0ba'/>
<id>urn:sha1:f698f2b708be742afa286c65868a48f7ef80b0ba</id>
<content type='text'>
- Straight-forward call interface: `void rx_slow_hash(const char *seedhash, const void *data, size_t length, char *result_hash)`
- Consensus chain seed hash is now updated by calling `rx_set_main_seedhash` whenever a block is added/removed or a reorg happens
- `rx_slow_hash` will compute correct hash no matter if `rx_set_main_seedhash` was called or not (the only difference is performance)
- New environment variable `MONERO_RANDOMX_FULL_MEM` to force use the full dataset for PoW verification (faster block verification)
- When dataset is used for PoW verification, dataset updates don't stall other threads (verification is done in light mode then)
- When mining is running, PoW checks now also use dataset for faster verification
</content>
</entry>
<entry>
<title>wallet2: check wallet compatibility with daemon's hard fork version</title>
<updated>2022-09-13T03:23:08Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-08-26T23:13:19Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=864a78ee5f5db4619c093e0dfb26bd03735d9fb1'/>
<id>urn:sha1:864a78ee5f5db4619c093e0dfb26bd03735d9fb1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rpc: skip bootstrap nodes that are lower than last checkpoint</title>
<updated>2022-09-06T20:09:39Z</updated>
<author>
<name>selsta</name>
<email>selsta@sent.at</email>
</author>
<published>2022-08-19T22:40:46Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=93db74a91ed7416754899d4cbacf213647894871'/>
<id>urn:sha1:93db74a91ed7416754899d4cbacf213647894871</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Merge pull request #7937"</title>
<updated>2022-06-13T17:44:09Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-06-13T17:44:09Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=8460fcc32bfb381aa47dfe5293c5ad7dcc539361'/>
<id>urn:sha1:8460fcc32bfb381aa47dfe5293c5ad7dcc539361</id>
<content type='text'>
This reverts commit 50410d1f7d04bf60053f2263410c39e81d3ddad1, reversing
changes made to d054def63f9b8950fe20b2d8e841f5a9ae09418f.
</content>
</entry>
<entry>
<title>Give better error messages when missing SSL files</title>
<updated>2022-05-06T02:48:19Z</updated>
<author>
<name>Jeffrey Ryan</name>
<email>jeffreyryan@tutanota.com</email>
</author>
<published>2022-05-06T02:23:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1ddb1ee8191daa9d778099c079acb9f172e33f49'/>
<id>urn:sha1:1ddb1ee8191daa9d778099c079acb9f172e33f49</id>
<content type='text'>
While copying my data dir to another drive, I missed copying the rpc_ssl.key file b/c of the file permissions.
This change will give a much more clear, descriptive error in that scenario.
</content>
</entry>
</feed>
