| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | | | | |
|
| | |_|/
|/| | |
|
| |\ \ \
| | | |
| | | |
| | | | |
ac5cd865 simplewallet: fix typo in incoming monero message (moneromooo-monero)
|
| | | |/
| |/| |
|
| |\ \ \
| | | |
| | | |
| | | | |
93c33985 simplewallet: translate ring size 0 to mixin 0 (default values) (moneromooo-monero)
|
| | |/ /
| | |
| | |
| | | |
Avoids turning it to a huge number
|
| |\ \ \
| | | |
| | | |
| | | | |
b42ee213 Wallet: update ring size in outdated error msgs with set_default_ring_size (binaryFate)
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
b0b7e0f0 Spend proof without txkey (stoffu)
|
| | | |_|/
| |/| | |
|
| |/ / / |
|
| | |/
|/|
| |
| |
| |
| |
| |
| |
| | |
- refactoring: proof generation/checking code was moved from simplewallet.cpp to wallet2.cpp
- allow an arbitrary message to be signed together with txid
- introduce two types (outbound & inbound) of tx proofs; with the same syntax, inbound is selected when <address> belongs to this wallet, outbound otherwise. see GitHub thread for more discussion
- wallet RPC: added get_tx_key, check_tx_key, get_tx_proof, check_tx_proof
- wallet API: moved WalletManagerImpl::checkPayment to Wallet::checkTxKey, added Wallet::getTxProof/checkTxProof
- get_tx_key/check_tx_key: handle additional tx keys by concatenating them into a single string
|
| | | |
|
| | | |
|
| | |
| |
| |
| | |
Missed a crypto::null_pkey in PR#2629
|
| | |
| |
| |
| | |
Missed an input_line() change
|
| |\ \
| | |
| | |
| | | |
fc85d7a9 simplewallet: fix in show_transfer passing wrong arg to wallet2::get_payments etc (stoffu)
|
| | | |
| | |
| | |
| | | |
wallet2::get_payments etc
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
0d9c0db9 Do not build against epee_readline if it was not built (Howard Chu)
178014c9 split off readline code into epee_readline (moneromooo-monero)
a9e14a19 link against readline only for monerod and wallet-wallet-{rpc,cli} (moneromooo-monero)
437421ce wallet: move some scoped_message_writer calls from the libs (moneromooo-monero)
e89994e9 wallet: rejig to avoid prompting in wallet2 (moneromooo-monero)
ec5135e5 move input_line from command_line to simplewallet (moneromooo-monero)
082db75f move cryptonote command line options to cryptonote_core (moneromooo-monero)
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
wallet2 is a library, and should not prompt for stdin. Instead,
pass a function so simplewallet can prompt on stdin, and a GUI
might display a window, etc.
|
| | |/ /
| | |
| | |
| | |
| | | |
It was only used there, and this removes one part of the common
dependency on libreadline
|
| |\ \ \
| | | |
| | | |
| | | | |
ad03f778 simplewallet: factor transfer related exception handling (moneromooo-monero)
|
| | |/ /
| | |
| | |
| | |
| | | |
This ensures they don't go out of sync when adding/changing them,
and makes the code easier to deal with.
|
| |\ \ \
| |/ /
|/| |
| | | |
383ff4f6 remove "using namespace std" from headers (moneromooo-monero)
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
It's nasty, and actually breaks on Solaris, where if.h fails to
build due to:
struct map *if_memmap;
|
| |\ \ \
| | | |
| | | |
| | | | |
424852a6 Fix 'sweep_all' command when called with no args (Leon Klingele)
|
| | | | |
| | | |
| | | |
| | | | |
Executing 'sweep_all' with no arguments segfaulted before.
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
37e1fd94 simplewallet: mark the active account in print_accounts (moneromooo-monero)
|
| | |/ / / |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
6cf33446 Remove wallet dependency on p2p (moneromooo-monero)
|
| | |/ / / |
|
| | | | |
| | | |
| | | |
| | | | |
It'd be interpreted as a huge one (~0 fake outs)
|
| | |/ /
|/| |
| | |
| | |
| | | |
This yields a clear error message rather then some possibly
confusing more technical errors down the line
|
| |\ \ \
| | | |
| | | |
| | | | |
105425b7 simplewallet: reject invalid argument for boolean parameter (stoffu)
|
| | | |/
| |/| |
|
| |\ \ \
| | | |
| | | |
| | | | |
8ddcf1e7 simplewallet: remove XMR mentions (moneromooo-monero)
|
| | | |/
| |/|
| | |
| | |
| | |
| | | |
They are actually wrong if the wallet is setup in a different
denomination, and it's incursion of extrinsic lingo where monero
fits perfectly in the first place.
|
| |\ \ \
| | | |
| | | |
| | | | |
ad96c478 wallet-cli: added --generate-from-spend-key option (stoffu)
|
| | | |/
| |/| |
|
| |/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Transactions in the txpool are marked when another transaction
is seen double spending one or more of its inputs.
This is then exposed wherever appropriate.
Note that being marked with this "double spend seen" flag does
NOT mean this transaction IS a double spend and will never be
mined: it just means that the network has seen at least another
transaction spending at least one of the same inputs, so care
should be taken to wait for a few confirmations before acting
upon that transaction (ie, mostly of use for merchants wanting
to accept unconfirmed transactions).
|
| |\ \
| | |
| | |
| | | |
b370ef54 Wallet: Descriptions through new commands 'set_description', 'get_description' (rbrunner7)
|
| | |/ |
|
| |\ \
| | |
| | |
| | | |
8041b4e9 wallet-cli: allow priority argument for sweep_all and donate (stoffu)
|
| | |/ |
|
| |/
|
|
| |
Fix #1530
|
| |\
| |
| |
| | |
4090e8c6 simplewallet: add get/set for refresh-from-height (moneromooo-monero)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
7b8d3ec6 wallet-cli: add --do-not-relay option (stoffu)
|
| | |/ |
|