<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/cryptonote_core/cryptonote_core.cpp, branch v0.18.4.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.4.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.18.4.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2025-03-10T06:32:08Z</updated>
<entry>
<title>blockchain sync: reduce disk writes from 2 to 1 per tx</title>
<updated>2025-03-10T06:32:08Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2024-01-17T23:17:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=008ba966da88f073f226b299533faca905ceabf8'/>
<id>urn:sha1:008ba966da88f073f226b299533faca905ceabf8</id>
<content type='text'>
</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>cryptonote core/protocol: don't drop peers for soft offenses</title>
<updated>2023-03-29T07:07:15Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2023-03-27T21:32:47Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=059b975388f346a4243273a75d86c16fd8e6990d'/>
<id>urn:sha1:059b975388f346a4243273a75d86c16fd8e6990d</id>
<content type='text'>
Also: txs with tx_extra which is too large will not get published to ZMQ

Co-authored-by: SChernykh &lt;sergey.v.chernykh@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge pull request #8588</title>
<updated>2022-09-26T20:00:59Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2022-09-26T20:00:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1f27fdf6a5b5eeee76049fc3974ff096b8919717'/>
<id>urn:sha1:1f27fdf6a5b5eeee76049fc3974ff096b8919717</id>
<content type='text'>
802c4bb Move update_checkpoints() to a later stage (SChernykh)
</content>
</entry>
<entry>
<title>Move update_checkpoints() to a later stage</title>
<updated>2022-09-22T11:06:39Z</updated>
<author>
<name>SChernykh</name>
<email>sergey.v.chernykh@gmail.com</email>
</author>
<published>2022-09-22T11:06:39Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=802c4bb0e4e7a94c07e5c06a3e993e104b529e52'/>
<id>urn:sha1:802c4bb0e4e7a94c07e5c06a3e993e104b529e52</id>
<content type='text'>
update_checkpoints() makes a few DNS requests and can take up to 20-30 seconds to complete (3-6 seconds on average). It is currently called from core::handle_incoming_block() which holds m_incoming_tx_lock, so it blocks all incoming transactions and blocks processing while update_checkpoints() is running. This PR moves it to until after a new block has been processed and relayed, to avoid full monerod locking.
</content>
</entry>
<entry>
<title>Second thread pool for IO</title>
<updated>2022-09-20T08:22:12Z</updated>
<author>
<name>SChernykh</name>
<email>sergey.v.chernykh@gmail.com</email>
</author>
<published>2022-06-14T19:23:23Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=6adf03cdc516a9236aac6dbd6f289750761b8d24'/>
<id>urn:sha1:6adf03cdc516a9236aac6dbd6f289750761b8d24</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>Publish submitted txs via zmq</title>
<updated>2022-07-21T18:53:31Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-07-09T22:08:06Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=8cc3c9af4dde7a32d675c4297d673dee4a9c2514'/>
<id>urn:sha1:8cc3c9af4dde7a32d675c4297d673dee4a9c2514</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add view tags to outputs to reduce wallet scanning time</title>
<updated>2022-04-18T07:49:53Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2021-11-15T13:23:53Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ea87b30f8907ee11252433811e7a7d0c46758cca'/>
<id>urn:sha1:ea87b30f8907ee11252433811e7a7d0c46758cca</id>
<content type='text'>
Implements view tags as proposed by @UkoeHB in MRL issue
https://github.com/monero-project/research-lab/issues/73

At tx construction, the sender adds a 1-byte view tag to each
output. The view tag is derived from the sender-receiver
shared secret. When scanning for outputs, the receiver can
check the view tag for a match, in order to reduce scanning
time. When the view tag does not match, the wallet avoids the
more expensive EC operations when deriving the output public
key using the shared secret.
</content>
</entry>
</feed>
