Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-11 | Make strWalletFile const | Jonas Schnelli | |
2016-11-07 | Get rid of nType and nVersion | Pieter Wuille | |
Remove the nType and nVersion as parameters to all serialization methods and functions. There is only one place where it's read and has an impact (in CAddress), and even there it does not impact any of the recursively invoked serializers. Instead, the few places that need nType or nVersion are changed to read it directly from the stream object, through GetType() and GetVersion() methods which are added to all stream classes. | |||
2016-11-03 | Merge #9071: Declare wallet.h functions inline | Wladimir J. van der Laan | |
2ca882a Declare wallet.h functions inline (Pieter Wuille) | |||
2016-11-02 | Merge #9036: wallet: Change default confirm target from 2 to 6 | Pieter Wuille | |
0fdf810 wallet: Change default confirm target from 2 to 6 (Wladimir J. van der Laan) | |||
2016-11-02 | Declare wallet.h functions inline | Pieter Wuille | |
2016-11-02 | Merge #8977: [Wallet] Refactor wallet/init interaction (Reaccept wtx, flush ↵ | Wladimir J. van der Laan | |
thread) cab1da7 [Wallet] Refactor wallet/init interaction (Reaccept wtx, flush thread) (Jonas Schnelli) | |||
2016-10-28 | wallet: Change default confirm target from 2 to 6 | Wladimir J. van der Laan | |
Recent discussion (in IRC meetings, and e.g. #8989) has shown a preference for the default confirm target for smartfees to be 6 instead of 2, to avoid overpaying fees for questionable gain. 6 is also a compromise between the GUI's pre-#8989 value of 25 and the bitcoind `-txconfirmtarget` default of 2. These were unified in #8989, but this has made the (overly expensive) default of 2 as GUI default. | |||
2016-10-26 | Return useful error message on ATMP failure | instagibbs | |
2016-10-20 | [Wallet] Refactor wallet/init interaction (Reaccept wtx, flush thread) | Jonas Schnelli | |
2016-10-18 | Merge #8287: [wallet] Set fLimitFree = true | Wladimir J. van der Laan | |
fa8b02d [rpc] rawtx: Prepare fLimitFree to make it an option (MarcoFalke) fa28bfa [wallet] Set fLimitFree = true (MarcoFalke) | |||
2016-09-30 | Move key derivation logic from GenerateNewKey to DeriveNewChildKey | Patrick Strateman | |
2016-09-29 | Merge #8658: Remove unused statements in serialization | Wladimir J. van der Laan | |
64d9507 [WIP] Remove unused statement in serialization (Pavel Janík) | |||
2016-09-21 | [wallet] Introduce DEFAULT_DISABLE_WALLET | MarcoFalke | |
2016-09-15 | Remove pwalletdb parameter from CWallet::AddAccountingEntry | Patrick Strateman | |
2016-09-15 | Add CWallet::ReorderTransactions and use in accounting_tests.cpp | Patrick Strateman | |
2016-09-15 | Add CWallet::ListAccountCreditDebit | Patrick Strateman | |
Simple pass through for CWalletDB::ListAccountCreditDebit | |||
2016-09-13 | Merge #8601: Add option to opt into full-RBF when sending funds (rebase, ↵ | Wladimir J. van der Laan | |
original by petertodd) 86726d8 Rename `-optintofullrbf` option to `-walletrbf` (Wladimir J. van der Laan) 05fa823 wallet: Add BIP125 comment for MAXINT-1/-2 behavior (Wladimir J. van der Laan) 152f45b Add option to opt into full-RBF when sending funds (Peter Todd) | |||
2016-09-13 | Rename `-optintofullrbf` option to `-walletrbf` | Wladimir J. van der Laan | |
This makes it clear that this is a wallet option. | |||
2016-09-09 | [WIP] Remove unused statement in serialization | Pavel Janík | |
2016-09-08 | net: Pass CConnection to wallet rather than using the global | Cory Fields | |
2016-08-26 | Add option to opt into full-RBF when sending funds | Peter Todd | |
2016-08-25 | [wallet] Set fLimitFree = true | MarcoFalke | |
2016-08-24 | Merge #8445: Move CWallet::setKeyPool to private section of CWallet. | Wladimir J. van der Laan | |
8680d3a Move wallet initialization logic from AppInit2 to CWallet::InitLoadWallet (Patrick Strateman) e86eb71 Move CWallet::setKeyPool to private section of CWallet (Patrick Strateman) | |||
2016-08-19 | [Qt] add HD enabled/disabled icon to the status bar | Jonas Schnelli | |
2016-08-17 | Move CWallet::setKeyPool to private section of CWallet | Patrick Strateman | |
2016-08-12 | Reduce cs_main locks during ConnectTip/SyncWithWallets | Jonas Schnelli | |
2016-08-01 | Merge #8432: Make CWallet::fFileBacked private. | Pieter Wuille | |
29c2d99 Make CWallet::fFileBacked private. (Patrick Strateman) | |||
2016-07-30 | Make CWallet::fFileBacked private. | Patrick Strateman | |
2016-07-29 | Remove CWalletDB* parameter from CWallet::AddToWallet | Patrick Strateman | |
2016-07-29 | Split CWallet::AddToWallet into AddToWallet and LoadToWallet. | Patrick Strateman | |
This removes the fFromLoadWallet flag in AddToWallet. These were already effectively two methods. | |||
2016-07-28 | Port from 0.13: Create a new HD seed after encrypting the wallet | Jonas Schnelli | |
Forward-ports two commits from 0.13: - [0.13] Create a new HD seed after encrypting the wallet - [Wallet] Add CKeyMetadata record for HDMasterKey(s), factor out HD key generation Github-Pull: #8389 Rebased-From: f142c11ac634df487cc4bc65a5f1c9a3e3563dd9 de45c065f0648c4c41b57cb492420ceeed29dd11 | |||
2016-07-27 | [Wallet] add HD xpriv to dumpwallet | Jonas Schnelli | |
2016-07-18 | [Wallet] Ensure <0.13 clients can't open HD wallets | Jonas Schnelli | |
2016-07-15 | [Wallet] comsetic non-code changes for the HD feature | Jonas Schnelli | |
2016-07-09 | [Wallet] print hd masterkeyid in getwalletinfo | Jonas Schnelli | |
2016-06-14 | Merge #8035: [Wallet] Add simplest BIP32/deterministic key generation ↵ | Wladimir J. van der Laan | |
implementation afcd77e Detect -usehd mismatches when wallet.dat already exists (Jonas Schnelli) 17c0131 [Docs] Add release notes and bip update for Bip32/HD wallets (Jonas Schnelli) c022e5b [Wallet] use constant for bip32 hardened key limit (Jonas Schnelli) f190251 [Wallet] Add simplest BIP32/deterministic key generation implementation (Jonas Schnelli) | |||
2016-06-06 | Improve CWallet API with new GetAccountPubkey function. | Patrick Strateman | |
Remove one more caller that is passing CWalletDB. | |||
2016-06-06 | Merge #8137: Improve CWallet API with new AccountMove function. | Wladimir J. van der Laan | |
9dfaa1c Improve CWallet API with new AccountMove function. (Patrick Strateman) | |||
2016-06-03 | Merge #7967: [RPC] add feerate option to fundrawtransaction | Wladimir J. van der Laan | |
04eaa90 Add more clear interface for CoinControl.h regarding individual feerate (Jonas Schnelli) 3b35e48 [RPC] add feerate option to fundrawtransaction (Jonas Schnelli) | |||
2016-06-02 | Improve CWallet API with new AccountMove function. | Patrick Strateman | |
2016-05-31 | [Wallet] Add simplest BIP32/deterministic key generation implementation | Jonas Schnelli | |
2016-05-16 | Move BackupWallet to CWallet::BackupWallet | Patrick Strateman | |
2016-05-16 | Move GetAccountBalance from rpcwallet.cpp into CWallet::GetAccountBalance | Patrick Strateman | |
2016-05-09 | Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk | Patrick Strateman | |
2016-05-06 | Add more clear interface for CoinControl.h regarding individual feerate | Jonas Schnelli | |
2016-04-28 | [RPC] add feerate option to fundrawtransaction | Jonas Schnelli | |
2016-04-25 | Merge #7688: List solvability in listunspent output and improve help | Wladimir J. van der Laan | |
c3932b3 List solvability in listunspent output and improve help (Pieter Wuille) | |||
2016-04-18 | wallet_ismine.h → script/ismine.h | Wladimir J. van der Laan | |
Removes conditional dependency of `src/test` on wallet. Makes multisig and P2SH tests complete without wallet built-in. | |||
2016-04-15 | Add lockUnspents option to fundrawtransaction | João Barbosa | |
2016-04-15 | Add change options to fundrawtransaction | João Barbosa | |