aboutsummaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
...
* | wallet: add edit_address_book RPCmoneromooo-monero2019-09-171-0/+17
| |
* | functional_tests: add address book testsmoneromooo-monero2019-09-171-0/+35
| |
* | functional_tests: add wallet password change, store and tag testsmoneromooo-monero2019-09-171-0/+84
| |
* | functional_tests: add spend proof testsmoneromooo-monero2019-09-171-0/+25
| |
* | functional_tests: add test for mining via walletmoneromooo-monero2019-09-171-0/+23
| |
* | functional_tests: add multisig state testsmoneromooo-monero2019-09-171-0/+12
| |
* | functional_tests: add get_transfers testmoneromooo-monero2019-09-171-0/+11
| |
* | functional_tests: add missing sweep_dust parameters, and test itmoneromooo-monero2019-09-171-1/+7
| | | | | | | | though not a very good test, but we don't have dust handy
* | functional_tests: move extraneous stuff out of the frameworkmoneromooo-monero2019-09-171-12/+0
|/
* Merge pull request #5855luigi11112019-09-081-1/+2
|\ | | | | | | 2ec455d wallet: fix mismatch between two concepts of 'balance' (moneromooo-monero)
| * wallet: fix mismatch between two concepts of "balance"moneromooo-monero2019-09-051-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | One considers the blockchain, while the other considers the blockchain and some recent actions, such as a recently created transaction which spend some outputs, but isn't yet mined. Typically, the "balance" command wants the latter, to reflect the recent action, but things like proving ownership wants the former. This fixes a crash in get_reserve_proof, where a preliminary check and the main code used two concepts of "balance".
* | Merge pull request #5820luigi11112019-08-272-2/+2
|\ \ | |/ |/| | | ac0a229 Fix Android build in Docker (hyperreality)
| * Fix Android build in Dockerhyperreality2019-08-182-2/+2
| | | | | | | | | | | | | | Fixes issue with libtinfo5 being required by iconv1.15 but not installed by default in latest Debian stable. Tested with a fresh build of the Android image.
* | Merge pull request #5757luigi11112019-08-211-1/+11
|\ \ | | | | | | | | | a12ca68 translations: add a ready file to control which translations to build (moneromooo-monero)
| * | translations: add a ready file to control which translations to buildmoneromooo-monero2019-07-161-1/+11
| | | | | | | | | | | | Some translations are committed before they're ready to be used
* | | Merge pull request #5490luigi11112019-08-171-0/+11
|\ \ \ | | | | | | | | | | | | 1a93aa4 functional_tests: add get_fee_estimate to blockchain test (moneromooo-monero)
| * | | functional_tests: add get_fee_estimate to blockchain testmoneromooo-monero2019-04-241-0/+11
| |/ /
* | | Merge pull request #5525luigi11112019-08-141-1/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | 0605406 daemon: sort alt chains by height (moneromooo-monero) 4228ee0 daemon: add optional arguments to alt_chain_info (moneromooo-monero) 880ebfd daemon: add more chain specific info in alt_chain_info (moneromooo-monero)
| * | | daemon: add more chain specific info in alt_chain_infomoneromooo-monero2019-06-011-1/+2
| |/ /
* | / functional_tests: add validate_address testsmoneromooo-monero2019-07-291-0/+13
| |/ |/|
* | python-rpc: add missing getblock RPC parametersmoneromooo-monero2019-05-091-2/+4
|/
* wallet_rpc_server: add set_log_level/set_log_categoriesmoneromooo-monero2019-04-161-0/+22
|
* Merge pull request #5446Riccardo Spagni2019-04-161-0/+21
|\ | | | | | | | | | | | | | | | | 7d79222f daemon: remove debug info (moneromooo-monero) 8fec0f98 functional_tests: add sweep_single test (moneromooo-monero) 9880d61b wallet_rpc_server: remove unused code (moneromooo-monero) 8a61b33d rpc: omit irrelevant fields for pool txes in gettransactions (moneromooo-monero) 56508524 rpc: add relayed in get_transaction output (moneromooo-monero) 82e510f1 rpc: set default log category in core_rpc_server.h (moneromooo-monero)
| * functional_tests: add sweep_single testmoneromooo-monero2019-04-151-0/+21
| |
* | Merge pull request #5434Riccardo Spagni2019-04-161-1/+2
|\ \ | | | | | | | | | ccb996af rpc: new sanity check on relayed transactions (moneromooo-monero)
| * | rpc: new sanity check on relayed transactionsmoneromooo-monero2019-04-121-1/+2
| |/ | | | | | | This will weed out some transactions with silly rings
* / wallet_rpc_server: fix inconsistent wallet caches on reloadmoneromooo-monero2019-04-121-4/+20
|/ | | | | | | | | | Loading the same wallet as the currently loaded one would autosave the current state after loading it, leading to some kind of rollback effect. We now save before loading to avoid this. If loading fails, it means the current wallet will be saved (or maybe not, depending on where the failure occurs: most of the sanity checks occur before saving). There is a new autosave_current flag to open/restore calls so the (enabled by default) autosave can be skipped.
* console: simple shell over console.pymoneromooo-monero2019-04-111-0/+3
| | | | to avoid the "python -i" part
* console.py: can now connect to several daemons/walletsmoneromooo-monero2019-04-113-53/+69
| | | | | | Also throw exceptions instead of print+exit, since that makes the error print last, below the python stack trace, where it's much less easy to miss it.
* console.py: add tab completionmoneromooo-monero2019-04-111-0/+9
|
* functional_tests: cold signing key images/outputs import/exportmoneromooo-monero2019-04-111-0/+44
|
* functional_tests: add double spend detection testsmoneromooo-monero2019-04-111-2/+14
|
* functional_tests: add alt chains testsmoneromooo-monero2019-04-111-0/+15
|
* functional_tests: add wallet creation language testsmoneromooo-monero2019-04-111-4/+14
|
* functional_tests: add more wallet testsmoneromooo-monero2019-04-111-0/+31
| | | | get_transfer_by_txid, get_height, open/close
* python-rpc: add set_log_level and set_log_categoriesmoneromooo-monero2019-04-111-0/+12
|
* functional_tests: add describe_transfer testsmoneromooo-monero2019-04-111-1/+2
|
* console.py: support connecting to any host, not just 127.0.0.1moneromooo-monero2019-04-111-5/+23
|
* functional_tests: add more blockchain related testsmoneromooo-monero2019-04-111-4/+66
| | | | | Related to emission, reorgs, getting tx data back, output distribution and histogram
* functional_tests: add bans testsmoneromooo-monero2019-04-111-0/+21
|
* python-rpc: add getblockheadersrange daemon RPCmoneromooo-monero2019-03-231-0/+13
|
* python-rpc: add console.pymoneromooo-monero2019-03-233-0/+65
| | | | | | | | | | It allows one to connect to a running daemon or wallet, and use its RPC API from python. Usage: python -i console.py <port> It will detect whether it's talking to a daemon or wallet and initialize itself accordingly.
* functional_tests: move RPC API to utils, it is not test specificmoneromooo-monero2019-03-224-0/+873
|
* Update 2019 copyrightbinaryFate2019-03-0510-10/+10
|
* Merge pull request #5060Riccardo Spagni2019-01-281-1/+1
|\ | | | | | | | | cb3b4adb translations: update and sync all language files (erciccione) dc0f618e utils: 'update-translations.sh' now removes obsolete strings (erciccione)
| * utils: 'update-translations.sh' now removes obsolete stringserciccione2019-01-111-1/+1
| |
* | Merge pull request #4972Riccardo Spagni2019-01-161-0/+30
|\ \ | |/ |/| | | b97059fc add erciccione's pgp key (erciccione)
| * add erciccione's pgp keyerciccione2018-12-121-0/+30
| |
* | update expiry date for both signing and encryption keysmoneromooo-monero2018-12-111-25/+25
|/
* Utils: Add Dockerfile for android 64-bit buildGregory Lemercier2018-10-092-1/+143
|