aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Extend TransactionInfo with coinbase and description attributes in wallet/apidsc2020-09-194-0/+23
| | |_|/ | |/| |
* | | | Allow tx note edits via TransactionHistory object in wallet/apidsc2020-11-283-0/+13
| |_|/ |/| |
* | | Merge pull request #6902luigi11112020-10-213-0/+11
|\ \ \ | | | | | | | | | | | | 70eb0d1 wallet2_api: implement stop() to interrupt refresh() loop once (xiphon)
| * | | wallet2_api: implement stop() to interrupt refresh() loop oncexiphon2020-10-173-0/+11
| | |/ | |/|
* | | Merge pull request #6882Alexander Blair2020-10-181-1/+3
|\ \ \ | |/ / |/| | | | | fcbfb0a00 wallet2: fix missing m_state field in wallet serialization (moneromooo-monero)
| * | wallet2: fix missing m_state field in wallet serializationmoneromooo-monero2020-10-121-1/+3
| | |
* | | Merge pull request #6828luigi11112020-10-133-0/+21
|\ \ \ | |/ / |/| | | | | 1b3f220 Allow AddressBook description edits via wallet/api interface (xmrdsc)
| * | Allow AddressBook description edits via wallet/api interfacedsc2020-09-193-0/+21
| |/
* / fix a couple bugs found by OSS-fuzzmoneromooo-monero2020-09-241-0/+2
|/ | | | | - index out of bounds when importing outputs - accessing invalid CLSAG data
* Merge pull request #6793luigi11112020-09-151-1/+1
|\ | | | | | | de9a9fb update error message 'No unlocked balance in the specified account' (woodser)
| * update error message "No unlocked balance in the specified account"woodser2020-09-011-1/+1
| |
* | wallet2: adapt to deterministic unlock timeTheCharlatan2020-09-154-18/+44
| |
* | Merge pull request #6815luigi11112020-09-142-4/+9
|\ \ | | | | | | | | | ef4325f wallet2: fix tx sanity check triggering on pre-rct outputs (monermooo-monero)
| * | wallet2: fix tx sanity check triggering on pre-rct outputsmoneromooo-monero2020-09-122-4/+9
| | |
* | | Fix typo in command line argument descriptionReinaldulin2020-09-091-1/+1
| | |
* | | Merge pull request #6798luigi11112020-09-071-1/+1
|\ \ \ | |/ / |/| | | | | 4e44306 enable CLSAG support for Trezor client (ph4r05)
| * | enable CLSAG support for Trezor clientDusan Klinec2020-09-041-1/+1
| |/
* | Merge pull request #6757luigi11112020-09-031-15/+15
|\ \ | |/ |/| | | 6a37da8 threadpool: guard against exceptions in jobs, and armour plating (moneromooo-monero)
| * threadpool: guard against exceptions in jobs, and armour platingmoneromooo-monero2020-09-011-15/+15
| | | | | | | | | | Those would, if uncaught, exit run and leave the waiter to wait indefinitely for the number of active jobs to reach 0
* | Bind signature to full address and signing modeSarang Noether2020-08-284-29/+42
| |
* | wallet: allow signing a message with spend or view keymoneromooo-monero2020-08-286-24/+121
| |
* | Integrate CLSAGs into moneromoneromooo-monero2020-08-273-31/+66
| | | | | | | | They are allowed from v12, and MLSAGs are rejected from v13.
* | Merge pull request #6767Alexander Blair2020-08-271-0/+3
|\ \ | | | | | | | | | 07442a605 Fix build with Boost 1.74 (moneromooo-monero)
| * | Fix build with Boost 1.74moneromooo-monero2020-08-161-0/+3
| |/ | | | | | | Thanks iDunk for testing
* | Merge pull request #6746Alexander Blair2020-08-271-2/+2
|\ \ | | | | | | | | | 20f603c6b Fix broken multisig pubkey sorting (Jason Rhinelander)
| * | Fix broken multisig pubkey sortingJason Rhinelander2020-08-051-2/+2
| |/ | | | | | | | | | | | | | | | | | | The sort predicate is a boolean ordered-before value, but these are returning the memcmp value directly, and thus returns true whenever the pubkeys aren't equal. This means: - it isn't actually sorting. - it can (and does) segfault for some inputs.
* | Merge pull request #6752Alexander Blair2020-08-272-12/+22
|\ \ | | | | | | | | | | | | 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)
| * | simplewallet: allow setting tx keys when sending to a subaddressmoneromooo-monero2020-08-102-2/+12
| | | | | | | | | | | | The tx key derivation is different then
| * | wallet2: fix setting tx keys when another is already setmoneromooo-monero2020-08-081-10/+10
| |/ | | | | | | | | insert doesn't actually insert if another element with the same key is already in the map
* | Merge pull request #6731Alexander Blair2020-08-271-1/+1
|\ \ | | | | | | | | | db5d6e460 wallet2: fix wrong name when checking RPC cost (moneromooo-monero)
| * | wallet2: fix wrong name when checking RPC costmoneromooo-monero2020-07-311-1/+1
| |/
* | Merge pull request #6690Alexander Blair2020-08-276-107/+527
|\ \ | | | | | | | | | 7175dcb10 replace most boost serialization with existing monero serialization (moneromooo-monero)
| * | replace most boost serialization with existing monero serializationmoneromooo-monero2020-08-176-107/+527
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Revert "Use domain-separated ChaCha20 for in-memory key encryption"luigi11112020-08-172-27/+0
|/ / | | | | | | This reverts commit 921dd8dde5d381052d0aa2936304a3541a230c55.
* | Merge pull request #6716Alexander Blair2020-08-167-40/+41
|\ \ | | | | | | | | | 76c16822d wallet2_api: implement runtime proxy configuration (xiphon)
| * | wallet2_api: implement runtime proxy configurationxiphon2020-07-207-40/+41
| |/
* | Merge pull request #6715Alexander Blair2020-08-161-1/+4
|\ \ | | | | | | | | | 3d6bc0a68 wallet2: throw a error on wallet initialization failure (xiphon)
| * | wallet2: throw a error on wallet initialization failurexiphon2020-07-201-1/+4
| |/
* | Merge pull request #6632Alexander Blair2020-08-161-1/+1
|\ \ | | | | | | | | | ef694d028 fix warning by removing std::move() on temporary http_client object (woodser)
| * | fix warning by removing std::move() on temporary http_client objectwoodser2020-06-061-1/+1
| | |
* | | Merge pull request #6546Alexander Blair2020-08-161-5/+17
|\ \ \ | | | | | | | | | | | | eda167585 wallet_rpc_server: use unlock_time in suggested confirmations calc (moneromooo-monero)
| * | | wallet_rpc_server: use unlock_time in suggested confirmations calcmoneromooo-monero2020-05-171-5/+17
| | | |
* | | | Merge pull request #6493Alexander Blair2020-08-162-0/+27
|\ \ \ \ | | | | | | | | | | | | | | | 921dd8dde Use domain-separated ChaCha20 for in-memory key encryption (Sarang Noether)
| * | | | Use domain-separated ChaCha20 for in-memory key encryptionSarang Noether2020-08-092-0/+27
| | |_|/ | |/| |
* / | | Updates InProofV1, OutProofV1, and ReserveProofV1 to new V2 variants that ↵Sarang Noether2020-08-091-17/+29
|/ / / | | | | | | | | | include all public proof parameters in Schnorr challenges, along with hash function domain separators. Includes new randomized unit tests.
* | | Merge pull request #6516Alexander Blair2020-07-191-1/+0
|\ \ \ | | | | | | | | | | | | 8656a8c9f remove double includes (sumogr)
| * | | remove double includessumogr2020-05-111-1/+0
| | | |
* | | | Merge pull request #6512Alexander Blair2020-07-1935-35/+35
|\ \ \ \ | | | | | | | | | | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * | | | Update copyright year to 2020SomaticFanatic2020-05-0635-35/+35
| | | | | | | | | | | | | | | | | | | | Update copyright year to 2020
* | | | | Merge pull request #6587luigi11112020-07-081-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 94befec fix typo in pick_preferred_rct_inputs (Parean)