| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
[release-v0.18]
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Detach & re-process txs >= 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.
|
| |\
| |
| |
| | |
5ffa31c wallet2: fail to establish daemon cxn == 'Disconnected' cxn status (j-berman)
|
| | | |
|
| |/ |
|
| |\
| |
| |
| |
| |
| |
| | |
12e7c41 Merge pull request #5 from j-berman/restore-msig-encrypted-seed (Justin Berman)
848a0c0 Fix segfault restoring encrypted multisig seed (j-berman)
401f5d9 Require user ack multisig is experimental to restore (j-berman)
fc8a5d6 multisig: fix #8537 seed restore (suggestions by @UkoeHB) (j-berman)
|
| | | |
|
| | | |
|
| | | |
|
| |/
|
|
|
| |
this will make it easier huge wallets to do so without hitting
random limits (eg, max string size in node).
|
| |\
| |
| |
| | |
41b1a6b simplewallet: print usage when given no args (hinto.janaiyo)
|
| | | |
|
| |/
|
|
|
|
| |
unconfirmed solely uses a - b, and received now accepts b so it can
provide more detailed logs on what occurred (printing a - b, yet with a
and b).
|
| |\
| |
| |
| | |
1164874 src, epee: fix a couple compiler warnings (selsta)
|
| | | |
|
| |/
|
|
|
|
|
|
|
| |
There are vulnerabilities in multisig protocol if the parties do not
trust each other, and while there is a patch for it, it has not been
throroughly reviewed yet, so it is felt safer to disable multisig by
default for now.
If all parties in a multisig setup trust each other, then it is safe
to enable multisig.
|
| |\
| |
| |
| | |
0d6ecb1 multisig: add post-kex verification round to check that all participants have completed the multisig address (koe)
|
| | |
| |
| |
| | |
have completed the multisig address
|
| |\ \
| | |
| | |
| | | |
5d388eb Bump ring size to 16 for v15 & remove set default in wallet cli (j-berman)
|
| | | | |
|
| |\ \ \
| |/ /
|/| |
| | | |
3593a98 simplewallet: fix integrated_address output string (selsta)
|
| | | | |
|
| |/ / |
|
| |\ \
| | |
| | |
| | | |
da9aa1f Copyright: Update to 2022 (mj-xmr)
|
| | |/ |
|
| |\ \
| | |
| | |
| | | |
3f88fdd simplewallet: add option for exporting tx keys (reemuru)
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit adds an option to export transaction
keys when performing export_transfers all. By passing
option=with_keys a new column 'tx key' will be
populated with respective keys.
|
| |\ \ \
| | | |
| | | |
| | | | |
cf44349 account info text alignment (im)
|
| | |/ / |
|
| | |/
|/| |
|
| |\ \
| |/
|/|
| | |
e08abaa multisig key exchange update and refactor (koe)
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| |\
| |
| |
| | |
c8ff1d4 monero-wallet-cli: improve error message when tx amount is zero (Elliot Wirrick)
|
| | | |
|
| |\ \
| |/
|/|
| | |
673c6d2 Reduce compilation time of epee/portable_storage_template_helper.h (mj-xmr)
|
| | | |
|
| |\ \
| |/
|/|
| | |
f346e3e wallet_rpc_payments: implement multithreading (gdmojo)
|
| | | |
|
| |\ \
| | |
| | |
| | |
| | | |
bd12984 Remove copies from foreach loops (thanks to Clang) (Lee Clagett)
1572df9 Removing unused namespace alias (Lee Clagett)
|
| | |/ |
|
| |\ \
| | |
| | |
| | | |
85db173 Remove unused variables in monero codebase (Kevin Barbour)
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
There are quite a few variables in the code that are no longer
(or perhaps never were) in use. These were discovered by enabling
compiler warnings for unused variables and cleaning them up.
In most cases where the unused variables were the result
of a function call the call was left but the variable
assignment removed, unless it was obvious that it was
a simple getter with no side effects.
|
| |\ \
| | |
| | |
| | | |
ccd0f2b Simplewallet.cpp: Add export_outputs help (SomaticFanatic)
|
| | |/
| |
| |
| | |
See #6547
|
| |\ \
| | |
| | |
| | | |
186271e monero-wallet-cli: Added command scan_tx (Horia Mihai David)
|
| | | |
| | |
| | |
| | | |
To implement this feature, the wallet2::scan_tx API was implemented.
|
| |\ \ \
| | | |
| | | |
| | | | |
993e9be simplewallet: allow setting --restore-height 0 (selsta)
|