aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
Commit message (Expand)AuthorAgeFilesLines
...
| * | Fix missing cs_main lock for GuessVerificationProgress()Jonas Schnelli2018-01-301-8/+4
* | | Merge #12356: Fix 'mempool min fee not met' debug outputWladimir J. van der Laan2018-02-151-1/+1
|\ \ \
| * | | Consistently use FormatStateMessage in RPC error outputBen Woosley2018-02-081-1/+1
* | | | Merge #11866: Do not un-mark fInMempool on wallet txn if ATMP fails.Wladimir J. van der Laan2018-02-141-6/+1
|\ \ \ \
| * | | | Do not un-mark fInMempool on wallet txn if ATMP fails.Matt Corallo2017-12-111-6/+1
* | | | | Merge #12381: Remove more boost threadsWladimir J. van der Laan2018-02-121-2/+2
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | boost: drop boost threads for [alert|block|wallet]notifyCory Fields2018-02-081-2/+2
* | | | | Merge #12333: Make CWallet::ListCoins atomicWladimir J. van der Laan2018-02-081-81/+79
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | [wallet] Indent only change of CWallet::AvailableCoinsJoão Barbosa2018-02-081-78/+75
| * | | | [wallet] Make CWallet::ListCoins atomicJoão Barbosa2018-02-081-4/+5
| |/ / /
* | | | Merge #12282: wallet: Disallow abandon of conflicted txesWladimir J. van der Laan2018-02-081-2/+2
|\ \ \ \ | |/ / / |/| | |
| * | | wallet: Disallow abandon of conflicted txesMarcoFalke2018-02-061-2/+2
| | |/ | |/|
* / | [wallet] Remove duplicate mapWallet lookupsJoão Barbosa2018-01-281-11/+6
|/ /
* | [wallet] Add change type to CCoinControlJoão Barbosa2018-01-241-4/+4
* | Merge #12119: [wallet] use P2WPKH change output if any destination is P2WPKH ...Wladimir J. van der Laan2018-01-241-2/+32
|\ \
| * | [wallet] use P2WPKH change output if any destination is P2WPKH or P2WSHSjors Provoost2018-01-231-2/+32
* | | Reduce cs_main lock in ReadBlockFromDisk, only read GetBlockPos under the lockJonas Schnelli2018-01-231-6/+1
* | | Make sure WalletRescanReserver has successfully reserved the rescanJonas Schnelli2018-01-231-8/+12
* | | Avoid pemanent cs_main/cs_wallet lock during wallet rescansJonas Schnelli2018-01-231-12/+50
|/ /
* | Merge #11403: SegWit wallet supportJonas Schnelli2018-01-101-7/+116
|\ \
| * | Support downgrading after recovered keypool witness keysPieter Wuille2018-01-091-0/+1
| * | SegWit wallet supportPieter Wuille2018-01-091-5/+112
| * | [refactor] GetAccount{PubKey,Address} -> GetAccountDestinationPieter Wuille2018-01-031-4/+5
* | | Increment MIT Licence copyright header year on files modified in 2017Akira Takizawa2018-01-031-1/+1
* | | Add helper to wait for validation interface queue to catch upMatt Corallo2017-12-261-6/+1
* | | Merge #10839: Don't use pass by reference to const for cheaply-copied types (...Wladimir J. van der Laan2017-12-141-3/+3
|\ \ \
| * | | Don't use pass by reference to const for cheaply-copied types (bool, char, et...practicalswift2017-08-141-3/+3
* | | | Merge #11864: Make CWallet::FundTransaction atomicWladimir J. van der Laan2017-12-141-18/+19
|\ \ \ \
| * | | | [wallet] Make CWallet::FundTransaction atomicJoão Barbosa2017-12-141-1/+4
| * | | | [wallet] Tidy up CWallet::FundTransactionJoão Barbosa2017-12-141-18/+16
| | |_|/ | |/| |
* | | | Merge #11870: wallet: Remove unnecessary mempool lock in ReacceptWalletTransa...Wladimir J. van der Laan2017-12-121-4/+1
|\ \ \ \ | |_|_|/ |/| | |
| * | | wallet: Remove unnecessary mempool lock in ReacceptWalletTransactionsJoão Barbosa2017-12-111-4/+1
| |/ /
* | | Merge #11854: Split up key and script metadata for better type safetyWladimir J. van der Laan2017-12-121-3/+11
|\ \ \
| * | | Split up key and script metadata for better type safetyRussell Yanofsky2017-12-081-3/+11
* | | | Merge #10574: Remove includes in .cpp files for things the corresponding .h f...Wladimir J. van der Laan2017-12-121-2/+0
|\ \ \ \ | |_|/ / |/| | |
| * | | Remove includes in .cpp files for things the corresponding .h file already in...practicalswift2017-11-161-2/+0
* | | | don't attempt mempool entry for wallet transactions on startup if already in ...Gregory Sanders2017-12-111-0/+5
| |/ / |/| |
* | | Merge #10493: Use range-based for loops (C++11) when looping over map elementsMarcoFalke2017-11-301-23/+23
|\ \ \ | |/ / |/| |
| * | Use range-based for loops (C++11) when looping over map elementspracticalswift2017-10-091-23/+23
* | | scripted-diff: Replace #include "" with #include <> (ryanofsky)MeshCollider2017-11-161-28/+28
* | | Merge #10286: Call wallet notify callbacks in scheduler thread (without cs_main)Wladimir J. van der Laan2017-11-151-8/+68
|\ \ \
| * | | Use callbacks to cache whether wallet transactions are in mempoolMatt Corallo2017-10-131-6/+31
| * | | Add CWallet::BlockUntilSyncedToCurrentChain()Matt Corallo2017-10-131-2/+37
* | | | Use MakeUnique<T>(...) instead of std::unique_ptr<T>(new T(...))practicalswift2017-11-091-1/+1
* | | | Merge #11074: Assert that CWallet::SyncMetaData finds oldest transaction.Wladimir J. van der Laan2017-11-091-0/+3
|\ \ \ \
| * | | | Assert that CWallet::SyncMetaData finds oldest transaction.Eelis2017-08-171-0/+3
* | | | | Merge #10368: [wallet] Remove helper conversion operator from walletWladimir J. van der Laan2017-11-091-10/+10
|\ \ \ \ \
| * | | | | [wallet] Remove CTransaction&() helper conversion operator from wallet implem...Karl-Johan Alm2017-05-091-10/+10
* | | | | | Merge #11467: Fix typos. Use nullptr instead of NULL.Wladimir J. van der Laan2017-10-181-1/+1
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | Use nullptr instead of NULLpracticalswift2017-10-091-1/+1
| | |_|/ / | |/| | |