summaryrefslogtreecommitdiff
path: root/src/wallet/api
Commit message (Collapse)AuthorAgeFilesLines
* switch wallet API from std thread/mutex to boostRiccardo Spagni2016-09-182-11/+11
|
* wallet: change priority/fee to ArticMine's recommendationmoneromooo-monero2016-09-161-2/+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.
* wallet: do not store signatures in the wallet cachemoneromooo-monero2016-08-281-3/+2
| | | | | Saves some substantial space. Also avoid calculating tx hashes we don't need.
* wallet2_api: zero amounts are now allowed with rctmoneromooo-monero2016-08-281-6/+0
|
* wallet2_api: update on_money_{received,spent} prototypes for rct changesmoneromooo-monero2016-08-281-4/+2
|
* libwallet_api: Wallet::amountFromString fixedIlya Kitaev2016-08-231-1/+1
|
* libwallet_api: helper method to return maximumAllowedAmountIlya Kitaev2016-08-231-0/+5
|
* libwallet_api: do not store wallet on close if status is not okIlya Kitaev2016-08-221-3/+5
|
* Fake outs set is now decided by the walletmoneromooo-monero2016-08-111-2/+2
| | | | | | | | | | | | | | | | | | This plugs a privacy leak from the wallet to the daemon, as the daemon could previously see what input is included as a transaction input, which the daemon hadn't previously supplied. Now, the wallet requests a particular set of outputs, including the real one. This can result in transactions that can't be accepted if the wallet happens to select too many outputs with non standard unlock times. The daemon could know this and select another output, but the wallet is blind to it. It's currently very unlikely since I don't think anything uses non default unlock times. The wallet requests more outputs than necessary so it can use spares if any of the returns outputs are still locked. If there are not enough spares to reach the desired mixin, the transaction will fail.
* Merge pull request #915Riccardo Spagni2016-07-233-21/+162
|\ | | | | | | | | | | | | | | | | | | | | d7597c5 refreshing wallet even if error happened (Ilya Kitaev) 6d32a3d wallet_api: async init, Wallet::connected status, log level (Ilya Kitaev) 193d251 libwallet_api cmake: conditionally creating libwallet_merged2 only for STATIC build (Ilya Kitaev) 10c06dd wallet_api: segfault on refresh fixed (Ilya Kitaev) 9d2cb4f WalletListener functionality (Ilya Kitaev) d27b883 hack to successfull linking for MSYS2 (Ilya Kitaev) 083380c Transaction fee multiplier aka priority integraged (Ilya Kitaev) 00ed12b Wallet::paymentIdValid (Ilya Kitaev)
| * refreshing wallet even if error happenedIlya Kitaev2016-07-182-6/+18
| |
| * wallet_api: async init, Wallet::connected status, log levelIlya Kitaev2016-07-183-14/+45
| |
| * libwallet_api cmake: conditionally creating libwallet_merged2 only forIlya Kitaev2016-07-181-2/+1
| | | | | | | | STATIC build
| * wallet_api: segfault on refresh fixedIlya Kitaev2016-07-181-2/+2
| |
| * WalletListener functionalityIlya Kitaev2016-07-182-12/+98
| |
| * Transaction fee multiplier aka priority integragedIlya Kitaev2016-07-182-3/+10
| |
| * Wallet::paymentIdValidIlya Kitaev2016-07-181-0/+6
| |
* | wallet2_api: use uint64_t for amountsmoneromooo-monero2016-07-171-2/+2
|/
* wallet2_api: make this build (smatch needs .str() for /=)moneromooo-monero2016-07-071-1/+1
|
* Merge branch 'master' of https://github.com/mbg033/bitmoneroIlya Kitaev2016-06-231-5/+3
|\
| * PendingTransactionImpl: pointer->referenceIlya Kitaev2016-06-222-4/+4
| |
| * commented regexIlya Kitaev2016-06-221-1/+1
| |
| * Wallet::createTransaction: added mixin_count paramIlya Kitaev2016-06-202-8/+12
| |
| * double/string to monero integer convertion methodsIlya Kitaev2016-06-161-0/+17
| |
| * wallet::default_mixin exposed to public interface asIlya Kitaev2016-06-102-1/+12
| | | | | | | | | | Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction
| * Wallet::filename, Wallet::keysFilename, tests for move walletIlya Kitaev2016-06-102-0/+12
| |
| * removed unused "using"Ilya Kitaev2016-06-031-1/+0
| |
| * Wallet API : WalletManager::findWallets() addedIlya Kitaev2016-06-032-0/+38
| |
| * WalletListener::moneySpent testIlya Kitaev2016-05-161-0/+8
| |
| * WalletListener::moneySpent(), WalletListener::moneyReceived()Ilya Kitaev2016-05-131-2/+21
| |
| * started WalletListenerIlya Kitaev2016-05-052-1/+57
| |
| * TransactionHistory continuedIlya Kitaev2016-04-293-11/+92
| |
| * merged with upstreamIlya Kitaev2016-04-263-2/+99
| |
| * Wallet API: transaction history in progressIlya Kitaev2016-04-223-7/+14
| |
| * Wallet API : transaction history in progressIlya Kitaev2016-04-226-11/+55
| |
| * transaction history api in progressIlya Kitaev2016-04-202-0/+42
| |
| * transaction history api in progressIlya Kitaev2016-04-205-14/+67
| |
| * api implementation splitted over separate filesIlya Kitaev2016-04-2011-0/+1087
|
* WalletManager::findWallets: searching by "keys" files instead ofIlya Kitaev2016-06-231-5/+3
| | | | "address.txt" files
* Wallet: payment id and integrated addressIlya Kitaev2016-06-232-9/+53
|
* PendingTransactionImpl: pointer->referenceIlya Kitaev2016-06-232-4/+4
|
* commented regexIlya Kitaev2016-06-231-1/+1
|
* Wallet::createTransaction: added mixin_count paramIlya Kitaev2016-06-232-8/+12
|
* double/string to monero integer convertion methodsIlya Kitaev2016-06-231-0/+17
|
* wallet::default_mixin exposed to public interface asIlya Kitaev2016-06-232-1/+12
| | | | | Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction
* Wallet::filename, Wallet::keysFilename, tests for move walletIlya Kitaev2016-06-232-0/+12
|
* removed unused "using"Ilya Kitaev2016-06-231-1/+0
|
* Wallet API : WalletManager::findWallets() addedIlya Kitaev2016-06-232-0/+38
|
* WalletListener::moneySpent testIlya Kitaev2016-06-231-0/+8
|
* WalletListener::moneySpent(), WalletListener::moneyReceived()Ilya Kitaev2016-06-231-2/+21
|