<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/simplewallet/simplewallet.cpp, branch v0.17.1.5</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.17.1.5</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.17.1.5'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2020-09-16T00:59:36Z</updated>
<entry>
<title>Merge pull request #6819</title>
<updated>2020-09-16T00:59:36Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2020-09-16T00:59:36Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=d27d4526fe89b7cdeb4b296280c4a6cf7efe21f8'/>
<id>urn:sha1:d27d4526fe89b7cdeb4b296280c4a6cf7efe21f8</id>
<content type='text'>
c3f354e simplewallet fix wrong persistent-rpc-client-id name in help (moneromooo-monero)
</content>
</entry>
<entry>
<title>wallet2: adapt to deterministic unlock time</title>
<updated>2020-09-15T11:40:31Z</updated>
<author>
<name>TheCharlatan</name>
<email>seb.kung@gmail.com</email>
</author>
<published>2020-08-02T15:54:29Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=80e535c95a3e7b0c548ad996a777d6d026e93f6a'/>
<id>urn:sha1:80e535c95a3e7b0c548ad996a777d6d026e93f6a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>simplewallet fix wrong persistent-rpc-client-id name in help</title>
<updated>2020-09-14T20:50:35Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-09-14T20:50:35Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c3f354e6c13e91424db844298e9a78d5a8e6d2e2'/>
<id>urn:sha1:c3f354e6c13e91424db844298e9a78d5a8e6d2e2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bind signature to full address and signing mode</title>
<updated>2020-08-28T23:38:00Z</updated>
<author>
<name>Sarang Noether</name>
<email>32460187+SarangNoether@users.noreply.github.com</email>
</author>
<published>2020-08-28T23:38:00Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=fa06c39d9731b90dfd58ecd6cdfd3c936ee139a7'/>
<id>urn:sha1:fa06c39d9731b90dfd58ecd6cdfd3c936ee139a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>wallet: allow signing a message with spend or view key</title>
<updated>2020-08-28T23:25:17Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-05-20T21:43:09Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=743608ec16e27a3c1ca2febd4e80391a32c23efd'/>
<id>urn:sha1:743608ec16e27a3c1ca2febd4e80391a32c23efd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #6752</title>
<updated>2020-08-27T09:58:23Z</updated>
<author>
<name>Alexander Blair</name>
<email>snipa@jagtech.io</email>
</author>
<published>2020-08-27T09:58:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=a06c83db73977ec8f5e1457d667761f95d9fdd93'/>
<id>urn:sha1:a06c83db73977ec8f5e1457d667761f95d9fdd93</id>
<content type='text'>
85899230d simplewallet: allow setting tx keys when sending to a subaddress (moneromooo-monero)
e916201f1 wallet2: fix setting tx keys when another is already set (moneromooo-monero)
</content>
</entry>
<entry>
<title>replace most boost serialization with existing monero serialization</title>
<updated>2020-08-17T16:23:58Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-06-24T23:26:58Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=7175dcb1078abbdaa130a8c5f5fd2b93fa7b3086'/>
<id>urn:sha1:7175dcb1078abbdaa130a8c5f5fd2b93fa7b3086</id>
<content type='text'>
This reduces the attack surface for data that can come from
malicious sources (exported output and key images, multisig
transactions...) since the monero serialization is already
exposed to the outside, and the boost lib we were using had
a few known crashers.

For interoperability, a new load-deprecated-formats wallet
setting is added (off by default). This allows loading boost
format data if there is no alternative. It will likely go
at some point, along with the ability to load those.

Notably, the peer lists file still uses the boost serialization
code, as the data it stores is define in epee, while the new
serialization code is in monero, and migrating it was fairly
hairy. Since this file is local and not obtained from anyone
else, the marginal risk is minimal, but it could be migrated
later if needed.

Some tests and tools also do, this will stay as is for now.
</content>
</entry>
<entry>
<title>Merge pull request #6677</title>
<updated>2020-08-16T19:46:27Z</updated>
<author>
<name>Alexander Blair</name>
<email>snipa@jagtech.io</email>
</author>
<published>2020-08-16T19:46:27Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=eba21899250f2b453677b34099aaf3e1414d80fd'/>
<id>urn:sha1:eba21899250f2b453677b34099aaf3e1414d80fd</id>
<content type='text'>
f9e3fcdf3 add trezor support to sweep_single (Dusan Klinec)
</content>
</entry>
<entry>
<title>simplewallet: allow setting tx keys when sending to a subaddress</title>
<updated>2020-08-10T21:25:51Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-08-10T21:25:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=85899230d1a9b4303063eb038c4d40d4c09e406c'/>
<id>urn:sha1:85899230d1a9b4303063eb038c4d40d4c09e406c</id>
<content type='text'>
The tx key derivation is different then
</content>
</entry>
<entry>
<title>Wallet, daemon: From 'help_advanced' back to 'help', and new 'apropos' command</title>
<updated>2020-07-24T05:12:11Z</updated>
<author>
<name>rbrunner7</name>
<email>rbrunner@dreamshare.ch</email>
</author>
<published>2020-06-01T08:20:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=fb31167b12caccdac071bdbe5ad58f235cdb82fe'/>
<id>urn:sha1:fb31167b12caccdac071bdbe5ad58f235cdb82fe</id>
<content type='text'>
</content>
</entry>
</feed>
