aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2017-11-15wallet: add sweep_single commandstoffu1-0/+1
2017-11-14wallet-cli: added --generate-from-spend-key optionstoffu1-0/+1
2017-10-16Wallet: Descriptions through new commands 'set_description', 'get_description'rbrunner71-0/+2
2017-10-15Merge pull request #2606Riccardo Spagni1-0/+1
4090e8c6 simplewallet: add get/set for refresh-from-height (moneromooo-monero)
2017-10-15Merge pull request #2586Riccardo Spagni1-0/+7
7b8d3ec6 wallet-cli: add --do-not-relay option (stoffu)
2017-10-08simplewallet: add get/set for refresh-from-heightmoneromooo-monero1-0/+1
2017-10-07Subaddresseskenshi841-6/+9
2017-10-07wallet-cli: add --do-not-relay optionstoffu1-0/+7
2017-10-02simplewallet: allow to set threshold before warning about tx backlogselsta1-0/+1
2017-09-25Merge pull request #2257Riccardo Spagni1-0/+2
651baaec wallet: add encrypted seed functionality (moneromooo-monero)
2017-09-20Merge pull request #2381Riccardo Spagni1-0/+1
840aed1c monero-wallet-cli: New command 'wallet_info' improved (rbrunner7) 9bdd985c monero-wallet-cli: New command 'wallet_info' (rbrunner7)
2017-09-12wallet: add encrypted seed functionalitymoneromooo-monero1-0/+2
This uses luigi1111's CN_Add method. See https://xmr.llcoins.net for details.
2017-08-31monero-wallet-cli: New command 'wallet_info'rbrunner71-0/+1
2017-08-29simplewallet: new "fee" command to display fee informationmoneromooo-monero1-0/+1
including expected transaction backlog at different priorities
2017-08-26wallet: new option to check/confirm txpool backlog when sendingmoneromooo-monero1-0/+1
2017-08-15Merge pull request #2293Riccardo Spagni1-0/+1
dee41efa simplewallet: mnemonic language command-line arg (Eugene Otto)
2017-08-15Merge pull request #2240Riccardo Spagni1-0/+1
b7d6ec83 simplewallet: add (out of sync) or (no daemon) markers in the prompt (moneromooo-monero) fa23a500 wallet2: add a is_synced function (moneromooo-monero) f1307bbd node_rpc_proxy: add a proxy for target height (moneromooo-monero)
2017-08-13simplewallet: mnemonic language command-line argEugene Otto1-0/+1
Add `--mnemonic-language` command-line arg so it's possible to generate a wallet without interacting with the CLI.
2017-08-07change mixin to ring size in user visible placesmoneromooo-monero1-1/+1
2017-08-02simplewallet: add (out of sync) or (no daemon) markers in the promptmoneromooo-monero1-0/+1
Should help people who don't realize why they haven't seen their monero yet.
2017-07-29Add option to join multisig wallet pieces togetherJollyMort1-0/+1
Asks user for all the data required to merge secret keys from multisig wallets into one master wallet, which then gets full control of the multisig wallet. The resulting wallet will be the same as any other regular wallet.
2017-06-22Signature proving payment to destination by only revealing key derivation, ↵stoffu1-0/+3
not the actual tx secret key
2017-06-10simplewallet: new command to generate a random payment idmoneromooo-monero1-0/+1
This is trivial, but often requested, and possibly hard to do in Windows. That makes it more user friendly.
2017-04-24wallet: add sweep_below functionmoneromooo-monero1-0/+2
It sweeps all outputs below the given threshold This is available via the existing sweep_all RPC, by setting amount_threshold the desired amount (in atomic units)
2017-03-25wallet: option to merge destinationsmoneromooo-monero1-0/+1
With the change from the original transfer method to the new algorithm, payments to the same destination were merged. It seemed like a good idea, optimizing space. However, it is a useful tool for people who want to split large outputs into several smaller ones (ie, service providers making frequent payments, and who do not like a large chunk of their balance being locked for 10 blocks after each payment). Default to off, which is a change from the previous behavior.
2017-03-24wallet: try to save large outputs when using an unneeded second inputmoneromooo-monero1-0/+2
When a single input is enough to satisfy a transfer, the code would previously try to add a second input, to match the "canonical" makeup of a transaction with two inputs and two outputs. This would cause wallets to slowly merge outputs till all the monero ends up in a single output, which causes trouble when making two transactions one after the other, since change is locked for 10 blocks, and an increasing portion of the remaining balance would end up locked on each transaction. There are two new settings (min-output-count and min-output-value) which can control when to stop adding such unneeded second outputs. The idea is that small "dust" outputs will still get added, but larger ones will not. Enable with, eg: set min-output-count 10 set min-output-value 30 to avoid using an unneeded second output of 30 monero or more, if there would be less than 10 such outputs left. This does not invalidate any other reason why such outputs would be used (ie, when they're really needed to satisfy a transfer, or when randomly picked in the normal course of selection). This may be improved in the future.
2017-03-03Merge pull request #1826Riccardo Spagni1-0/+1
2c468dd4 allow user I/O in millinero, micronero, nanonero, piconero (moneromooo-monero)
2017-03-02allow user I/O in millinero, micronero, nanonero, piconeromoneromooo-monero1-0/+1
2017-02-27Add support for the wallet to refresh pruned blocksmoneromooo-monero1-4/+4
2017-02-21update copyright year, fix occasional lack of newline at line endRiccardo Spagni1-1/+1
2017-02-11Merge pull request #1689Riccardo Spagni1-1/+1
ce7fcbb4 Add server auth to monerod, and client auth to wallet-cli and wallet-rpc (Lee Clagett)
2017-02-08extract some basic code from libcryptonote_core into libcryptonote_basickenshi841-2/+2
2017-02-06Add server auth to monerod, and client auth to wallet-cli and wallet-rpcLee Clagett1-1/+1
2017-02-04Merge pull request #1640Riccardo Spagni1-0/+1
f97526e6 simplewallet: option to always ask password for any crytical operations (kenshi84)
2017-02-03simplewallet: option to always ask password for any crytical operationskenshi841-0/+1
2017-01-29Add change_password for simplewalletAshley Perpetual1-0/+1
2017-01-16Change logging to easylogging++moneromooo-monero1-0/+3
This replaces the epee and data_loggers logging systems with a single one, and also adds filename:line and explicit severity levels. Categories may be defined, and logging severity set by category (or set of categories). epee style 0-4 log level maps to a sensible severity configuration. Log files now also rotate when reaching 100 MB. To select which logs to output, use the MONERO_LOGS environment variable, with a comma separated list of categories (globs are supported), with their requested severity level after a colon. If a log matches more than one such setting, the last one in the configuration string applies. A few examples: This one is (mostly) silent, only outputting fatal errors: MONERO_LOGS=*:FATAL This one is very verbose: MONERO_LOGS=*:TRACE This one is totally silent (logwise): MONERO_LOGS="" This one outputs all errors and warnings, except for the "verify" category, which prints just fatal errors (the verify category is used for logs about incoming transactions and blocks, and it is expected that some/many will fail to verify, hence we don't want the spam): MONERO_LOGS=*:WARNING,verify:FATAL Log levels are, in decreasing order of priority: FATAL, ERROR, WARNING, INFO, DEBUG, TRACE Subcategories may be added using prefixes and globs. This example will output net.p2p logs at the TRACE level, but all other net* logs only at INFO: MONERO_LOGS=*:ERROR,net*:INFO,net.p2p:TRACE Logs which are intended for the user (which Monero was using a lot through epee, but really isn't a nice way to go things) should use the "global" category. There are a few helper macros for using this category, eg: MGINFO("this shows up by default") or MGINFO_RED("this is red"), to try to keep a similar look and feel for now. Existing epee log macros still exist, and map to the new log levels, but since they're used as a "user facing" UI element as much as a logging system, they often don't map well to log severities (ie, a log level 0 log may be an error, or may be something we want the user to see, such as an important info). In those cases, I tried to use the new macros. In other cases, I left the existing macros in. When modifying logs, it is probably best to switch to the new macros with explicit levels. The --log-level options and set_log commands now also accept category settings, in addition to the epee style log levels.
2017-01-13Merge pull request #1559Riccardo Spagni1-0/+1
db56a03f Wallet2 + API: Callbacks for unconfirmed transfers (Jaquee)
2017-01-12Wallet2 + API: Callbacks for unconfirmed transfersJaquee1-0/+1
2017-01-09wallet cli: print originating block heights of mixin keys when making transferkenshi841-1/+3
2017-01-08Merge pull request #1537Riccardo Spagni1-0/+1
c2135082 simplewallet: add a show_transfer <txid> command (moneromooo-monero) 19c4041d wallet_rpc_server: new RPC call to get a transfer by txid (moneromooo-monero)
2017-01-08Merge pull request #1496Riccardo Spagni1-0/+1
adee1644 wallet cli: print unspent outputs with histogram (kenshi84)
2017-01-08Merge pull request #1482Riccardo Spagni1-0/+1
38f00d07 wallet cli: viewing and editing address book (kenshi84)
2017-01-08simplewallet: add a show_transfer <txid> commandmoneromooo-monero1-0/+1
2016-12-26wallet cli: print unspent outputs with histogramkenshi841-0/+1
2016-12-21make openalias also available for solo miner; introduce namespace ↵kenshi841-1/+0
tools::dns_utils; support integrated address with dns lookup
2016-12-21wallet cli: viewing and editing address bookkenshi841-0/+1
2016-12-19Refactored password prompting for walletsLee Clagett1-0/+3
2016-12-15wallet cli: donate commandKenshi Takayama1-0/+1
2016-11-16wallet: auto sync outputs and key images in cold signing filesmoneromooo-monero1-1/+1
When passing around unsigned and signed transactions, outputs and key images are passed along (outputs are passed along unsigned transactions from the hot wallet to the cold wallet, key images are passed along with signed transations from the cold wallet to the hot wallet), to allow more user friendly syncing between hot and cold wallets.
2016-11-10Created monero-wallet-rpc, moving functionality from monero-wallet-cliLee Clagett1-14/+7
2016-11-01Merge pull request #1281Riccardo Spagni1-0/+2
bb560dd wallet: new import_outputs/export_outputs commands (moneromooo-monero)
2016-10-30wallet: new import_outputs/export_outputs commandsmoneromooo-monero1-0/+2
The intended use is to export outputs from a hot wallet, which can scan incoming transfers from the network, and import them in the cold wallet, which can't. The cold wallet can then compute key images for those outputs, which can then be exported with export_key_images, etc.
2016-10-30wallet: print tx overview on submit_transfer toomoneromooo-monero1-0/+2
This is on the potentially compromised wallet, but still guards against stupid mistakes.
2016-10-04Merge pull request #1179Riccardo Spagni1-0/+1
714ee99 Fix description for locked_transfer (Oyvind Kvanes) 71538f3 Rename to lockblocks and add max value (Oyvind Kvanes) 68ac060 Fix locked_transfer (Oyvind Kvanes) 7d020bd Add locked_transfer (Oyvind Kvanes) d5f918a Revert transfer_main in simplewallet (Oyvind Kvanes) 3451963 Add motifications to test out locked_transfer (Oyvind Kvanes) e5e6d88 Add more information to transaction in wallet (Oyvind Kvanes) 9b8a062 Make a small test change (Oyvind Kvanes)
2016-10-04Merge pull request #1160Riccardo Spagni1-0/+1
80b4da3 wallet: wallet option to confirm transfers with no payment id (moneromooo-monero)
2016-10-01wallet: wallet option to confirm transfers with no payment idmoneromooo-monero1-0/+1
set confirm-missing-payment-id 0|1 Defaults to true.
2016-09-28Revert transfer_main in simplewalletOyvind Kvanes1-0/+1
2016-09-27wallet: cold wallet transaction signingmoneromooo-monero1-0/+3
This change adds the ability to create a new unsigned transaction from a watch only wallet, and save it to a file. This file can then be moved to another computer/VM where a cold wallet may load it, sign it, and save it. That cold wallet does not need to have a blockchain nor daemon. The signed transaction file can then be moved back to the watch only wallet, which can load it and send it to the daemon. Two new simplewallet commands to use it: sign_transfer (on the cold wallet) submit_transfer (on the watch only wallet) The transfer command used on a watch only wallet now writes an unsigned transaction set in a file called 'unsigned_monero_tx' instead of submitting the tx to the daemon as a normal wallet does. The signed tx file is called 'signed_monero_tx'.
2016-09-16wallet: change priority/fee to ArticMine's recommendationmoneromooo-monero1-1/+1
We keep 1, 2, 3 multipliers till the fee decrase from 0.01/kB to 0.002/kB, where we start using 1, 20, 166 multipliers. This ensures the higher multiplier will compensate for the block reward penalty when pushing past 100% of the past median. The fee-multiplier wallet setting is now rename to priority, since it keeps its [0..3] range, but maps to different multiplier values.
2016-08-28wallet: factor transfer_rct code with transfer codemoneromooo-monero1-1/+0
The "transfer" simplewallet command is renamed to "transfer_original". "transfer_new" is renamed "transfer", "transfer_rct" is removed, and the new "transfer" now selects rct or non rct transactions based on the current block height.
2016-08-28add rct to the protocolmoneromooo-monero1-3/+4
It is not yet constrained to a fork, so don't use on the real network or you'll be orphaned or rejected.
2016-08-11Merge pull request #952Riccardo Spagni1-0/+1
709c724 Better fix (#4) (hyc) d2644c1 fix restore-deterministic height (luigi1111)
2016-08-11Merge pull request #949Riccardo Spagni1-5/+7
da1007f simplewallet: make the refresh thread into more generic idle thread (moneromooo-monero)
2016-08-09Better fix (#4)hyc1-0/+1
2016-08-07simplewallet: make the refresh thread into more generic idle threadmoneromooo-monero1-5/+7
2016-08-01Fix #864guzzi_jones1-0/+1
Squashed commit of the following: commit 9af9e4223b58bbb65a3519af2c2bfc273cbd23d6 fixed some formatting commit c7920e1cf88ff46eb9294101344d9a567f22e2da Merge: 97eb28b 1da1c68 fix#864 fix using boolean commit 97eb28ba5dd49ddde8c8785f39b24d955e5de31c Fix #864 boolean value used to verify on new wallet commit 1da1c68bd3a9a373c70482b6e6e95251096149f1 fix #864 changed to boolean to prompt for verify commit 5bee96652434762d2c91ce31a1b1c9f169446ddc fix 864; made variable names easier for understanding branching. commit 45715960d30293f781b2ff9e5e647c2ec893f4a3 fix #864; allow password to be entered twice for new wallets for verification. fix #864 password entry verification; ammended boolean fix #864 ; default constructor for password_container should set verify=true
2016-07-24wallet: new {ex,im}port_key_images commands and RPC callsmoneromooo-monero1-0/+2
They are used to export a signed set of key images from a wallet with a private spend key, so an auditor with the matching view key may see which of those are spent, and which are not.
2016-07-20Merge pull request #902Riccardo Spagni1-1/+2
014f3a0 Add a daemon RPC version, and make simplewallet check it (moneromooo-monero)
2016-07-19wallet: add command and RPC to sign/verify datamoneromooo-monero1-0/+2
Signing is done using the spend key, since the view key may be shared. This could be extended later, to let the user choose which key (even a per tx key). simplewallet's sign/verify API uses a file. The RPC uses a string (simplewallet can't easily do strings since commands receive a tokenized set of arguments).
2016-07-10Add a daemon RPC version, and make simplewallet check itmoneromooo-monero1-1/+2
If the version is different, simplewallet will refuse to use that daemon, unless --allow-mismatched-daemon-version is used.
2016-06-22wallet: add a fee multipliermoneromooo-monero1-0/+1
Fee can now be multiplied by 2 or 3, if users want to give priority to their transactions. There are only three levels to avoid too much fingerprinting. Default is 1 (minimum fee). The default multiplier can be set by "set fee-multiplier X".
2016-06-20simplewallet: add a status commandmoneromooo-monero1-0/+1
It matches the daemon, and should allow people who're suspicious of the background refresh to know they're synced.
2016-04-26wallet: allow attaching notes to txidsmoneromooo-monero1-0/+2
2016-04-26Merge pull request #817Riccardo Spagni1-0/+1
4b1c0d6 simplewallet: some background refresh threading fixes (moneromooo-monero)
2016-04-26Merge pull request #815Riccardo Spagni1-0/+2
b0850a9 wallet: add a new sweep_all command and RPC command (moneromooo-monero)
2016-04-21simplewallet: some background refresh threading fixesmoneromooo-monero1-0/+1
We want to lock operations which access the blockchain in wallet2. We also want the background refresh to happen again when we cancel a foreground refresh. Wrap the locking setup in a macro so it doesn't get copy/pasted/mangled, and use a scope exit trick to ensure it's always properly restored.
2016-04-19wallet: add a new sweep_all command and RPC commandmoneromooo-monero1-0/+2
This sends all outputs in a wallet to a given address, alleviating the difficulty people have had trying to send all monero but being left with some small amount left.
2016-04-17Add --restore-height optionHoward Chu1-0/+1
For specifying the block height from which to start a restore
2016-03-26wallet: change sweep_dust to sweep_unmixablemoneromooo-monero1-1/+1
With the change in mixin rules for v2, the "annoying" outputs are slightly changed. There is high correlation between dust and unmixable, but no equivalence.
2016-03-25wallet: add a --generate-from-json flagmoneromooo-monero1-0/+2
It takes a filename containing JSON data to generate a wallet. The following fields are valid: version: integer, should be 1 filename: string, path/filename for the newly created wallet scan_from_height: 64 bit unsigned integer, optional password: string, optional viewkey: string, hex representation spendkey: string, hex representation seed: string, optional, list of words separated by spaces Either seed or private keys should be given. If using private keys, the spend key may be omitted (the wallet will not be able to spend, but will see incoming transactions). If scan_from_height is given, blocks below this height will not be checked for transactions as an optimization.
2016-03-11Use boost::thread instead of std::threadHoward Chu1-3/+3
and all other associated IPC
2016-02-22simplewallet: add a new --restore-from-keys optionmoneromooo-monero1-0/+3
It is similar in use to --restore-from-view-key, but also expects a spend private key. Requested by luigi1112, and useful to restore MyMonero wallets.
2016-01-29Fix V1/V2 use of hard fork related parametersmoneromooo-monero1-1/+2
Some of it uses hardcoded height, which will need some thinking for next (voted upon) fork.
2016-01-25simplewallet: remove leftover command line refresh-type handlingmoneromooo-monero1-2/+0
2015-12-31updated copyright yearRiccardo Spagni1-1/+1
2015-12-30wallet: add a rescan_bc command and rescan_blockchain RPCmoneromooo-monero1-0/+2
Blockchain hashes and key images are flushed, and blocks are pulled anew from the daemon. The console command is shortened to match bc_height. This should make it a lot easier on users who are currently told to remove this particular cache file but keep the keys one, etc, etc.
2015-12-05wallet: make the wallet refresh type a wallet settingmoneromooo-monero1-0/+1
instead of a command line setting. It makes sense that is is a long lived setting.
2015-11-29wallet: cancellable refreshmoneromooo-monero1-0/+3
^C while in manual refresh will cancel the refresh, since that's often an annoying thing to have to wait for. Also, a manual refresh command will interrupt any running background refresh and take over, rather than wait for the background refresh to be done, and look to be hanging.
2015-11-28wallet: optional automatic refresh from the daemonmoneromooo-monero1-0/+9
The daemon will be polled every 90 seconds for new blocks. It is enabled by default, and can be turned on/off with set auto-refresh 1 and set auto-refresh 0 in the wallet.
2015-11-22wallet: make the refresh optimizations selectable via command linemoneromooo-monero1-1/+3
Take the opportunity to add a no-coinbase case too, for even faster sync when an address is known to never have mined to.
2015-11-22wallet: rename store-tx-keys to store-tx-infomoneromooo-monero1-1/+1
With backward compatibility
2015-11-21simplewallet: lessen display flicker confusionmoneromooo-monero1-2/+2
Height seemed to be flying all over the place on a rescan here. Logging to a file shows the heights are actually correct, and this is some kind of screen refresh artifact. Flush after \r and update less often to reduce this effect a lot.
2015-11-15wallet: track outgoing payments and add a show_transfers commandmoneromooo-monero1-0/+1
It's a user friendly display of incoming and outgoing transfers, listed by height, within an optional height range.
2015-10-30simplewallet: add a set default-mixin commandmoneromooo-monero1-0/+1
The default default mixin is 4. It can now be changed per wallet.
2015-10-14simplewallet: add a check_tx_key commandmoneromooo-monero1-0/+1
It allows one to check the amount of monero sent to a particular address in a particular transaction, given that transaction's tx key
2015-10-11simplewallet: add a --trusted-daemon flagmoneromooo-monero1-0/+1
It allows enabling the rescan_spent command only for trusted daemon
2015-08-24simplewallet: add a store-tx-keys option to setmoneromooo-monero1-0/+1
To enable storing tx keys in the (now encrypted) wallet cache.
2015-08-19make tx keys available to the usermoneromooo-monero1-0/+1
They are also stored in the cache file, to be retrieved using a new get_tx_key command.
2015-08-11wallet: new rescan_spent command to update outputs' spent statusmoneromooo-monero1-0/+1
This obsoletes the need for a lengthy blockchain rescan when a transaction doesn't end up in the chain after being accepted by the daemon, or any other reason why the wallet's idea of spent and unspent outputs gets out of sync from the blockchain's.
2015-07-22wallet: new transaction construction algorithmmoneromooo-monero1-0/+2
It should avoid a lot of the issues sending more than half the wallet's contents due to change. Actual output selection is still random. Changing this would improve the matching of transaction amounts to output sizes, but may have non obvious effects on blockchain analysis. Mapped to the new transfer_new command in simplewallet, and transfer uses the existing algorithm. To use in RPC, add "new_algorithm: true" in the transfer_split JSON command. It is not used in the transfer command.
2015-07-19simplewallet: fix context/string order mismatchmoneromooo-monero1-1/+1
2015-07-18wallet: add boolean to always confirm transactions with the usermoneromooo-monero1-0/+1
This can be useful if you want to be given a veto over the tx fee, or if you want to see what a tx fee would be without actually sending.
2015-07-14Translatable strings for simplewalletmoneromooo-monero1-1/+4
The system is mostly the Qt system, but we don't use Qt to avoid the dependencies. See README.i18n for details.
2015-06-20simplewallet: allow creating a wallet from a public address and view secret keymoneromooo-monero1-0/+3
The needed information is supplied via a triple: --generate-from-view-key address:viewkey:filename
2015-06-12Integrated addresses (standard address plus payment id)moneromooo-monero1-0/+1
2015-05-31wallet: add watch only wallet supportmoneromooo-monero1-0/+1
The new save_watch_only saves a copy of the keys file without the spend key. It can then be given away to be used as a normal keys file, but with no spend ability.
2015-05-30wallet: add a sweep_dust commandmoneromooo-monero1-0/+1
Sends all the dust to your own wallet. May fail (if the fee required is more than the dust total). May end up paying most of the dust in fees. Unlocked dust total is now also displayed in "balance".
2015-05-19Add spendkey dump to simplewalletluigi11111-0/+1
2015-01-02year updated in licenseRiccardo Spagni1-1/+1
2014-12-08Add simple_wallet::seed_set_language methodwarptangent1-0/+12
Add simple_wallet::set_variable method to provide top-level "set" command and support "set seed language" command.
2014-10-19Prints seed after wallet upgrade. Removed iostream include.Oran Juice1-0/+5
2014-10-02Restructured language sources to be singletonsOran Juice1-1/+2
2014-09-27Doxygen comments inOran Juice1-4/+20
2014-09-25Accepts seed language choice from user.Oran Juice1-0/+1
2014-09-15Add testnet flagZachary Michaels1-2/+2
Source: cryptonotefoundation
2014-08-05added viewkey command to CLIJakob Lind1-0/+1
2014-08-03added seed command to get deterministic seed.Jakob Lind1-0/+1
not yet password protected
2014-07-23License updated to BSD 3-clausefluffypony1-3/+29
2014-06-30wallet RPC converted to use new transaction semanticsThomas Winget1-1/+0
wallet RPC now uses wallet2::create_transactions and wallet2::commit_tx instead of wallet2::transfer. This made it possible to add the RPC call /transfer_split, which will split transactions automatically if they are too large. The old call to /transfer will return an error stating to use /transfer_split if multiple transactions are needed to fulfill the request.
2014-06-30final changes to get transaction splitting building. needs testing.Thomas Winget1-3/+3
2014-06-30working on dividing functions in prep for tx splittingtom1-0/+4
2014-06-12allow two-random-numbers wallet generation (but not as default)Thomas Winget1-3/+2
2014-06-12reworked command line args for simplewallet.Thomas Winget1-1/+1
--generate-new-wallet and --wallet-file are now properly mutually-exclusive.
2014-06-12most functions prototyped/modified for wallet recoveryThomas Winget1-1/+9
2014-05-250.8.8updatemydesktop1-1/+1
2014-05-16Added 'save_bc' command in daemon for saving blockchain remotelyNeozaru1-0/+1
2014-05-03initial [broken] updatemydesktop1-0/+3
2014-04-02json rpc for wallet and bugfixAntonio Juarez1-3/+63
2014-03-20some fixesAntonio Juarez1-6/+6
2014-03-03moved all stuff to githubAntonio Juarez1-0/+74