Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-04-03 | tests: add a few try/catch in main to shut coverity up | moneromooo-monero | 1 | -0/+3 | |
2019-03-05 | Update 2019 copyright | binaryFate | 2 | -2/+2 | |
2018-11-15 | libwallet_api_tests: add missing dependency on Boost Locale and ICU | stoffu | 1 | -0/+2 | |
2018-03-15 | Fix typos in various files | Dimitris Apostolou | 1 | -3/+3 | |
2018-03-06 | Wallet API: make nettype non-defaulted to disambiguate from deprecated ↵ | stoffu | 1 | -51/+51 | |
versions (and make libwallet_api_tests compilable) | |||||
2018-03-05 | Correct spelling mistakes. | Edward Betts | 2 | -2/+2 | |
2018-03-04 | Code modifications to integrate Ledger HW device into monero-wallet-cli. | cslashm | 1 | -0/+2 | |
The basic approach it to delegate all sensitive data (master key, secret ephemeral key, key derivation, ....) and related operations to the device. As device has low memory, it does not keep itself the values (except for view/spend keys) but once computed there are encrypted (with AES are equivalent) and return back to monero-wallet-cli. When they need to be manipulated by the device, they are decrypted on receive. Moreover, using the client for storing the value in encrypted form limits the modification in the client code. Those values are transfered from one C-structure to another one as previously. The code modification has been done with the wishes to be open to any other hardware wallet. To achieve that a C++ class hw::Device has been introduced. Two initial implementations are provided: the "default", which remaps all calls to initial Monero code, and the "Ledger", which delegates all calls to Ledger device. | |||||
2018-01-26 | Update 2018 copyright | xmr-eric | 2 | -2/+2 | |
2017-11-16 | split wallet and wallet_api | moneromooo-monero | 2 | -1/+2 | |
This speeds up building a lot when wallet2.h (or something it includes) changes, since all the API includes wallet2.h | |||||
2017-11-14 | Merge pull request #2696 | Riccardo Spagni | 1 | -0/+2 | |
937e7f8a Initialize openssl on startup (moneromooo-monero) | |||||
2017-10-29 | fix libwallet api test after api change | Jaquee | 1 | -8/+8 | |
2017-10-21 | Initialize openssl on startup | moneromooo-monero | 1 | -0/+2 | |
2017-10-07 | Subaddresses | kenshi84 | 1 | -55/+59 | |
2017-09-25 | Merge pull request #2424 | Riccardo Spagni | 1 | -1/+1 | |
28b72b6e tx_pool: pre-init tvc.m_verifivation_failed before processing (moneromooo-monero) 50a629b2 core_tests: catch (impossible in practice) tx extra api failure (moneromooo-monero) fee15ef1 wallet2: catch failure to parse address (moneromooo-monero) 1399e26d net_peerlist: remove dead code (moneromooo-monero) 50e09698 tx_pool: guard against failure getting tx hash (moneromooo-monero) 54cc209a wallet_rpc_server: catch failure to create directory (moneromooo-monero) 3e55099c wallet_rpc_server: init m_vm to NULL in ctor (moneromooo-monero) 7d0dde5e wallet_args: remove redundant default value for --log-file (moneromooo-monero) ed4a3350 wallet2: catch failure to save keys file (moneromooo-monero) 44434c8a wallet2_api: check whether dynamic_cast returns NULL (moneromooo-monero) 92f2f687 core: check return value from parse_hexstr_to_binbuff (moneromooo-monero) 5475692e wallet2_api: remove an unused, uninitialized, field (moneromooo-monero) a7ba3de1 libwallet_api_tests: initialize newblock_triggered on reset (moneromooo-monero) b2763ace wallet2_api: init error code to "no error" in the ctor (moneromooo-monero) b5faac53 get_blockchain_top now returns void (moneromooo-monero) 2e44d8f2 wallet_rpc_server: guard against exceptions (moneromooo-monero) 4230876b simplewallet: guard against I/O exceptions (moneromooo-monero) 06c1e057 daemon: initialize decode_as_json in RPC request (moneromooo-monero) 11f71af5 http_base: init size_t in http_request_info ctor (moneromooo-monero) | |||||
2017-09-25 | libwallet_api_tests: initialize newblock_triggered on reset | moneromooo-monero | 1 | -1/+1 | |
CID 161873 | |||||
2017-09-21 | build: auto update version info without manually deleting version.h | stoffu | 1 | -0/+1 | |
2017-02-21 | update copyright year, fix occasional lack of newline at line end | Riccardo Spagni | 2 | -2/+2 | |
2017-02-16 | switch to boost::thread for mingw build | Lee Clagett | 2 | -29/+32 | |
2017-02-04 | update wallet api tests | Jaquee | 1 | -7/+8 | |
2017-01-16 | Change logging to easylogging++ | moneromooo-monero | 1 | -0/+1 | |
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-12 | Wallet2 + API: Callbacks for unconfirmed transfers | Jaquee | 1 | -0/+10 | |
2016-12-13 | Bitmonero namespace renamed Monero. Bitmonero namespace alias added so that ↵ | Randi Joseph | 1 | -136/+136 | |
third party uses of the wallet api can transition. | |||||
2016-10-06 | libwallet_api: test: adjusted mixin_count=4 as it's minumum allowed | Ilya Kitaev | 1 | -3/+4 | |
2016-10-06 | libwallet_api: some renamings | Ilya Kitaev | 1 | -6/+8 | |
2016-10-01 | libwallet_api: do not use fast-refresh on recovery | Ilya Kitaev | 1 | -11/+53 | |
2016-09-30 | libwallet_api: fast-refresh in case of opening non-synced wallet | Ilya Kitaev | 1 | -1/+25 | |
2016-09-30 | libwallet_api: fast-refresh for new wallet | Ilya Kitaev | 1 | -3/+28 | |
2016-09-28 | libwallet_api: test for create/init wallet on mainnet | Ilya Kitaev | 1 | -3/+50 | |
2016-09-28 | libwallet_api: tests: fixed WalletCallbackReceived test | Ilya Kitaev | 1 | -3/+7 | |
2016-09-27 | libwallet_api: tests: test fixed according implementation | Ilya Kitaev | 1 | -1/+0 | |
2016-09-27 | libwallet_api: tests: compilation errors fixed | Ilya Kitaev | 1 | -2/+2 | |
2016-09-26 | wallet2_api: added Wallet::daemonBlockChainHeight() | Ilya Kitaev | 2 | -5/+21 | |
2016-09-26 | libwallet_api: Wallet::blockChainHeight, WalletListener::newBlock | Ilya Kitaev | 1 | -2/+49 | |
2016-09-23 | libwallet_api: simple documentation on testing environment | Ilya Kitaev | 2 | -3/+25 | |
2016-09-22 | libwallet_api: tests: env variables for WALLETS_ROOT_DIR and | Ilya Kitaev | 1 | -13/+36 | |
TESTNET_DAEMON_ADDRESS | |||||
2016-09-22 | libwallet_api: tests: changed testwallets path, uncommitted all tests | Ilya Kitaev | 1 | -12/+14 | |
2016-09-20 | wallet2_api: getter and setter for "refresh interval" | Ilya Kitaev | 1 | -6/+13 | |
2016-09-18 | cmake: transitive deps and remove deprecated LINK_* | redfish | 1 | -1/+5 | |
Keep the immediate direct deps at the library that depends on them, declare deps as PUBLIC so that targets that link against that library get the library's deps as transitive deps. Break dep cycle between blockchain_db <-> crytonote_core. No code refactoring, just hide cycle from cmake so that it doesn't complain (cycles are allowed only between static libs, not shared libs). This is in preparation for supproting BUILD_SHARED_LIBS cmake built-in option for building internal libs as shared. | |||||
2016-09-03 | fix remaining bitmonero and simplewallet bits | Riccardo Spagni | 10 | -10/+10 | |
2016-08-30 | tests: cmake: fix building with system gtest | redfish | 1 | -1/+1 | |
Issues #980 #983 | |||||
2016-08-23 | libwallet_api: tests: checking for result while opening wallet | Ilya Kitaev | 1 | -4/+6 | |
2016-08-23 | libwallet_api: Wallet::amountFromString fixed | Ilya Kitaev | 1 | -0/+23 | |
2016-08-22 | libwallet_api: tests: removed logged passwords | Ilya Kitaev | 1 | -2/+2 | |
2016-08-22 | libwallet_api: do not store wallet on close if status is not ok | Ilya Kitaev | 1 | -2/+67 | |
2016-07-18 | wallet_api: async init, Wallet::connected status, log level | Ilya Kitaev | 1 | -20/+81 | |
2016-07-18 | WalletListener functionality | Ilya Kitaev | 2 | -39/+90 | |
2016-07-18 | Transaction fee multiplier aka priority integraged | Ilya Kitaev | 1 | -0/+42 | |
2016-06-23 | Merge branch 'master' of https://github.com/mbg033/bitmonero | Ilya Kitaev | 1 | -11/+6 | |
2016-06-23 | Wallet: payment id and integrated address | Ilya Kitaev | 1 | -3/+76 | |
2016-06-23 | Wallet::createTransaction: added mixin_count param | Ilya Kitaev | 1 | -1/+40 | |
2016-06-23 | double/string to monero integer convertion methods | Ilya Kitaev | 1 | -2/+14 | |
2016-06-23 | wallet::default_mixin exposed to public interface as | Ilya Kitaev | 1 | -0/+2 | |
Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction | |||||
2016-06-23 | Wallet::filename, Wallet::keysFilename, tests for move wallet | Ilya Kitaev | 1 | -0/+29 | |
2016-06-23 | Wallet API : WalletManager::findWallets() added | Ilya Kitaev | 4 | -15/+29 | |
2016-06-23 | scripts for faster test wallets generation | Ilya Kitaev | 11 | -19/+120 | |
2016-06-23 | regenerated test wallets, basic functions got broken | Ilya Kitaev | 1 | -17/+20 | |
2016-06-23 | WalletListener::moneyReceived test | Ilya Kitaev | 1 | -12/+38 | |
2016-06-23 | WalletListener::moneySpent test | Ilya Kitaev | 1 | -53/+154 | |
2016-06-23 | TransactionHistory continued | Ilya Kitaev | 1 | -11/+55 | |
2016-06-23 | Wallet API : transaction history in progress | Ilya Kitaev | 1 | -0/+28 | |
2016-06-23 | Wallet::createTransaction API introduced | Ilya Kitaev | 1 | -3/+11 | |
Transaction API continued TODOs for Transaction/Transfer interface | |||||
2016-06-23 | Wallet::transfer in progress | Ilya Kitaev | 1 | -0/+16 | |
2016-06-23 | Wallet::refresh + tests | Ilya Kitaev | 1 | -0/+12 | |
2016-06-23 | testnet option, Wallet::balance(), Wallet::unlockedBalance() | Ilya Kitaev | 1 | -11/+12 | |
2016-06-23 | - testnet option added to api; | Ilya Kitaev | 1 | -24/+44 | |
2016-06-23 | wallet2::store() implemented within wallet2::store_to | Ilya Kitaev | 1 | -0/+25 | |
2016-06-20 | Wallet::createTransaction: added mixin_count param | Ilya Kitaev | 1 | -1/+40 | |
2016-06-16 | double/string to monero integer convertion methods | Ilya Kitaev | 1 | -2/+14 | |
2016-06-10 | wallet::default_mixin exposed to public interface as | Ilya Kitaev | 1 | -0/+2 | |
Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction | |||||
2016-06-10 | Wallet::filename, Wallet::keysFilename, tests for move wallet | Ilya Kitaev | 1 | -0/+29 | |
2016-06-03 | Wallet API : WalletManager::findWallets() added | Ilya Kitaev | 4 | -15/+29 | |
2016-06-01 | scripts for faster test wallets generation | Ilya Kitaev | 11 | -19/+120 | |
2016-05-27 | regenerated test wallets, basic functions got broken | Ilya Kitaev | 1 | -17/+20 | |
2016-05-17 | WalletListener::moneyReceived test | Ilya Kitaev | 1 | -12/+38 | |
2016-05-16 | WalletListener::moneySpent test | Ilya Kitaev | 1 | -53/+154 | |
2016-04-29 | TransactionHistory continued | Ilya Kitaev | 1 | -11/+55 | |
2016-04-22 | Wallet API: transaction history in progress | Ilya Kitaev | 1 | -4/+4 | |
2016-04-22 | Wallet API : transaction history in progress | Ilya Kitaev | 1 | -0/+28 | |
2016-04-12 | TODOs for Transaction/Transfer interface | Ilya Kitaev | 1 | -4/+4 | |
2016-04-06 | Transaction API continued | Ilya Kitaev | 1 | -0/+2 | |
2016-04-05 | Wallet::createTransaction API introduced | Ilya Kitaev | 1 | -2/+8 | |
2016-04-04 | Wallet::transfer() continued | Ilya Kitaev | 1 | -0/+16 | |
2016-03-31 | Wallet::refresh + tests | Ilya Kitaev | 1 | -0/+12 | |
2016-03-31 | testnet option, Wallet::balance(), Wallet::unlockedBalance() | Ilya Kitaev | 1 | -11/+12 | |
2016-03-25 | - testnet option added to api; | Ilya Kitaev | 1 | -24/+44 | |
2016-03-21 | wallet2::store() implemented within wallet2::store_to | Ilya Kitaev | 1 | -0/+25 | |
2016-03-16 | Wallet::store_to(path, password) implemented; | Ilya Kitaev | 1 | -1/+64 | |
2016-03-16 | Wallet::address implemented | Ilya Kitaev | 1 | -0/+8 | |
2016-03-16 | WalletManager::recoveryWallet implemented | Ilya Kitaev | 1 | -5/+14 | |
2016-03-16 | Wallet::setPassword() method for wallet2_api | Ilya Kitaev | 1 | -4/+22 | |
2016-03-16 | changes in wallet2_api + implemented WalletManager::openWallet | Ilya Kitaev | 1 | -5/+25 | |
2016-03-16 | get_seed() included to interface | Ilya Kitaev | 1 | -9/+34 | |
2016-03-16 | tests for wallet2_api | Ilya Kitaev | 2 | -0/+128 | |