<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/wallet/api/wallet.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-02-13T17:43:24Z</updated>
<entry>
<title>Merge pull request #8617</title>
<updated>2025-02-13T17:43:24Z</updated>
<author>
<name>tobtoht</name>
<email>tob@featherwallet.org</email>
</author>
<published>2025-02-13T17:43:24Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5b045d70e0cb336eef9b962e53c827df3dcf469b'/>
<id>urn:sha1:5b045d70e0cb336eef9b962e53c827df3dcf469b</id>
<content type='text'>
e44e8b164 wallet: background sync with just the view key (j-berman)
</content>
</entry>
<entry>
<title>build: fix build with Boost 1.85 and remove instances of viewkey logging [RELEASE]</title>
<updated>2024-09-10T21:07:36Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2024-08-23T17:15:17Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=65568d3a884857ce08d1170f5801a6891a5c187c'/>
<id>urn:sha1:65568d3a884857ce08d1170f5801a6891a5c187c</id>
<content type='text'>
1. Use std::is_standard_layout and std::is_trivially_copyable instead of std::is_pod for KV byte-wise serialization, which fixes compile issue for Boost UUIDs
2. Removed reimplementation of std::hash for boost::uuids::uuid
3. Removed &lt;&lt; operator overload for crypto::secret_key
4. Removed instances in code where private view key was dumped to the log in plaintext

Release version of #9450, containing C++14 modified assertions
</content>
</entry>
<entry>
<title>wallet: background sync with just the view key</title>
<updated>2024-05-25T03:42:59Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-10-14T01:33:33Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e44e8b164030cfbddb9ae8b39251c1ccf396e2b6'/>
<id>urn:sha1:e44e8b164030cfbddb9ae8b39251c1ccf396e2b6</id>
<content type='text'>
- When background syncing, the wallet wipes the spend key
from memory and processes all new transactions. The wallet saves
all receives, spends, and "plausible" spends of receives the
wallet does not know key images for.
- When background sync disabled, the wallet processes all
background synced txs and then clears the background sync cache.
- Adding "plausible" spends to the background sync cache ensures
that the wallet does not need to query the daemon to see if any
received outputs were spent while background sync was enabled.
This would harm privacy especially for users of 3rd party daemons.
- To enable the feature in the CLI wallet, the user can set
background-sync to reuse-wallet-password or
custom-background-password and the wallet automatically syncs in
the background when the wallet locks, then processes all
background synced txs when the wallet is unlocked.
- The custom-background-password option enables the user to
open a distinct background wallet that only has a view key saved
and can be opened/closed/synced separately from the main wallet.
When the main wallet opens, it processes the background wallet's
cache.
- To enable the feature in the RPC wallet, there is a new
`/setup_background_sync` endpoint.
- HW, multsig and view-only wallets cannot background sync.
</content>
</entry>
<entry>
<title>Enforce Tx unlock_time is Zero by Relay Rule [RELEASE]</title>
<updated>2024-04-29T05:08:53Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2024-02-04T03:59:58Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=dd47d03cf2b5b3dc59cd99aca247d1025679f83a'/>
<id>urn:sha1:dd47d03cf2b5b3dc59cd99aca247d1025679f83a</id>
<content type='text'>
Related to https://github.com/monero-project/research-lab/issues/78

Added a relay rule that enforces the `unlock_time` field is equal to 0 for non-coinbase transactions.

UIs changed:
* Removed `locked_transfer` and `locked_sweep_all` commands from `monero-wallet-cli`

APIs changed:
* Removed `unlock_time` parameters from `wallet2` transfer methods
* Wallet RPC transfer endpoints send error codes when requested unlock time is not 0
* Removed `unlock_time` parameters from `construct_tx*` cryptonote core functions

@tobtoht: undo rebase changes tx.dsts -&gt; tx_dsts
</content>
</entry>
<entry>
<title>wallet2: fix rescanning tx via scan_tx</title>
<updated>2023-03-13T19:57:43Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-09-10T02:34:18Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=65e13dbef1c3a4cc036919203eec2052a121f034'/>
<id>urn:sha1:65e13dbef1c3a4cc036919203eec2052a121f034</id>
<content type='text'>
- Detach &amp; re-process txs &gt;= lowest scan height
- ensures that if a user calls scan_tx(tx1) after scanning tx2,
the wallet correctly processes tx1 and tx2
- if a user provides a tx with a height higher than the wallet's
last scanned height, the wallet will scan starting from that tx's
height
- scan_tx requires trusted daemon iff need to re-process existing
txs: in addition to querying a daemon for txids, if a user
provides a txid of a tx with height *lower* than any *already*
scanned txs in the wallet, then the wallet will also query the
daemon for all the *higher* txs as well. This is likely
unexpected behavior to a caller, and so to protect a caller from
revealing txid's to an untrusted daemon in an unexpected way,
require the daemon be trusted.
</content>
</entry>
<entry>
<title>Merge pull request #8615</title>
<updated>2022-12-01T07:06:16Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2022-12-01T07:06:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=cce309512cf2293849069be9a69c5c74c3e931e4'/>
<id>urn:sha1:cce309512cf2293849069be9a69c5c74c3e931e4</id>
<content type='text'>
85c9fe5 wallet2: fix create view-only wallet from existing wallet (j-berman)
</content>
</entry>
<entry>
<title>wallet2: fix create view-only wallet from existing wallet</title>
<updated>2022-10-18T18:47:50Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-10-18T18:47:50Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=85c9fe515d19728a9811f11a67c38266a72c0b94'/>
<id>urn:sha1:85c9fe515d19728a9811f11a67c38266a72c0b94</id>
<content type='text'>
</content>
</entry>
<entry>
<title>wallet_api: take priority into account when estimating fee</title>
<updated>2022-10-13T01:36:51Z</updated>
<author>
<name>selsta</name>
<email>selsta@sent.at</email>
</author>
<published>2022-10-13T01:35:19Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=401dda5f105387216a187d95e6cc99d308f8575a'/>
<id>urn:sha1:401dda5f105387216a187d95e6cc99d308f8575a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #8585</title>
<updated>2022-09-26T19:57:58Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2022-09-26T19:57:58Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=0bef4265ac0d2decd679367f767fa885c9f9625e'/>
<id>urn:sha1:0bef4265ac0d2decd679367f767fa885c9f9625e</id>
<content type='text'>
5ffa31c wallet2: fail to establish daemon cxn == 'Disconnected' cxn status (j-berman)
</content>
</entry>
<entry>
<title>wallet2: fail to establish daemon cxn == "Disconnected" cxn status</title>
<updated>2022-09-22T02:12:16Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2022-09-22T02:12:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5ffa31c48ef4c3a181200cd6d43f442e025573b7'/>
<id>urn:sha1:5ffa31c48ef4c3a181200cd6d43f442e025573b7</id>
<content type='text'>
</content>
</entry>
</feed>
