<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/wallet/wallet2.h, branch v0.18.3.3</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.3</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.18.3.3'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2024-02-24T14:58:30Z</updated>
<entry>
<title>Merge pull request #9008</title>
<updated>2024-02-24T14:58:30Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2024-02-24T14:58:30Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=81f113dd8c4f88bf963b5444df0ed5b9942d6bc6'/>
<id>urn:sha1:81f113dd8c4f88bf963b5444df0ed5b9942d6bc6</id>
<content type='text'>
9a89e2d wallet2: call on_reorg callback in handle_reorg (j-berman)
1df5630 wallet2: add on_reorg callback (Crypto City)
</content>
</entry>
<entry>
<title>wallet: feature: transfer amount with fee included</title>
<updated>2024-02-20T23:08:42Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2023-05-14T16:41:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=51d7a6921c8d6a337773f261a04301ef75ee5e3b'/>
<id>urn:sha1:51d7a6921c8d6a337773f261a04301ef75ee5e3b</id>
<content type='text'>
To transfer ~5 XMR to an address such that your balance drops by exactly 5 XMR, provide a `subtractfeefrom` flag to the `transfer` command. For example:

    transfer 76bDHojqFYiFCCYYtzTveJ8oFtmpNp3X1TgV2oKP7rHmZyFK1RvyE4r8vsJzf7SyNohMnbKT9wbcD3XUTgsZLX8LU5JBCfm 5 subtractfeefrom=all

If my walet balance was exactly 30 XMR before this transaction, it will be exactly 25 XMR afterwards and the destination address will receive slightly
less than 5 XMR. You can manually select which destinations fund the transaction fee and which ones do not by providing the destination index.
For example:

    transfer 75sr8AAr... 3 74M7W4eg... 4 7AbWqDZ6... 5 subtractfeefrom=0,2

This will drop your balance by exactly 12 XMR including fees and will spread the fee cost proportionally (3:5 ratio) over destinations with addresses
`75sr8AAr...` and `7AbWqDZ6...`, respectively.

Disclaimer: This feature was paid for by @LocalMonero.
</content>
</entry>
<entry>
<title>wallet2: fix refresh function parameters</title>
<updated>2023-10-01T18:56:31Z</updated>
<author>
<name>selsta</name>
<email>selsta@sent.at</email>
</author>
<published>2023-10-01T17:30:17Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=03d51b7cc453e6dda56d12f8a3a1aaf3cafc3c95'/>
<id>urn:sha1:03d51b7cc453e6dda56d12f8a3a1aaf3cafc3c95</id>
<content type='text'>
max_blocks is last on master branch
</content>
</entry>
<entry>
<title>wallet2: add on_reorg callback</title>
<updated>2023-09-27T19:50:34Z</updated>
<author>
<name>Crypto City</name>
<email>cryptocity@example.com</email>
</author>
<published>2019-11-17T21:12:46Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1df5630f23aef7b8fa14135966b615db78d2833a'/>
<id>urn:sha1:1df5630f23aef7b8fa14135966b615db78d2833a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #8941</title>
<updated>2023-09-15T03:19:27Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2023-09-15T03:19:27Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=031d318ca2cd6427fd91543e82eda0a9538fa73b'/>
<id>urn:sha1:031d318ca2cd6427fd91543e82eda0a9538fa73b</id>
<content type='text'>
356e687 wallet_rpc_server: chunk refresh to keep responding to RPC while refreshing (moneromooo-monero) 633e1b7 wallet_rpc_server: add --no-initial-sync flag for quicker network binding (moneromooo-monero)
</content>
</entry>
<entry>
<title>wallet2: fix `store_to()` and `change_password()`</title>
<updated>2023-08-23T16:52:31Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2023-07-07T17:55:02Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ba98269ca507766aa76f0ebbcaebe6f6eef93192'/>
<id>urn:sha1:ba98269ca507766aa76f0ebbcaebe6f6eef93192</id>
<content type='text'>
Resolves #8932 and:
2. Not storing cache when new path is different from old in `store_to()` and
3. Detecting same path when new path contains entire string of old path in `store_to()` and
4. Changing your password / decrypting your keys (in this method or others) and providing a bad original password and getting no error and
5. Changing your password and storing to a new file
</content>
</entry>
<entry>
<title>wallet_rpc_server: chunk refresh to keep responding to RPC while refreshing</title>
<updated>2023-08-17T15:35:00Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2022-05-25T09:30:58Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=356e6877dcd3fcb337ea8ff8c88cf44fbc6a30a6'/>
<id>urn:sha1:356e6877dcd3fcb337ea8ff8c88cf44fbc6a30a6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #8942</title>
<updated>2023-08-17T15:24:16Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2023-08-17T15:24:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=9d5c5b563416b68a74031cc4647d260035b48c23'/>
<id>urn:sha1:9d5c5b563416b68a74031cc4647d260035b48c23</id>
<content type='text'>
78348bc wallet-rpc: restore from multisig seed (jeffro256)
</content>
</entry>
<entry>
<title>wallet-rpc: restore from multisig seed</title>
<updated>2023-08-10T15:13:07Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2023-06-22T07:15:12Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=78348bcddd18fa7a25541595576bef1df4fc4022'/>
<id>urn:sha1:78348bcddd18fa7a25541595576bef1df4fc4022</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>
</feed>
