Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-13 | crypter: constify encrypt/decrypt | Cory Fields | |
This makes CCrypter easier to pass aroundf for tests | |||
2016-05-13 | crypter: fix the stored initialization vector size | Cory Fields | |
AES IV's are 16bytes, not 32. This was harmless but confusing. Add WALLET_CRYPTO_IV_SIZE to make its usage explicit. | |||
2016-05-10 | [doc] Remove outdated line from listunspent RPC help, fix typo | MarcoFalke | |
2016-05-10 | Merge #8028: Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk | Wladimir J. van der Laan | |
0fd5997 Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk (Patrick Strateman) | |||
2016-05-10 | init: Move berkeleydb version reporting to wallet | Wladimir J. van der Laan | |
Move the version reporting to Wallet::Verify, before starting verification of the wallet. This removes the dependency of init on a specific wallet database library. A further, trivial step towards resolving #7965. | |||
2016-05-09 | Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk | Patrick Strateman | |
2016-05-06 | Prevent multiple calls to ExtractDestination | Pedro Branco | |
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-22 | Merge #7816: [Wallet] slighly refactor GetOldestKeyPoolTime() | Wladimir J. van der Laan | |
9f7336b [Wallet] slightly refactor GetOldestKeyPoolTime() (Jonas Schnelli) | |||
2016-04-19 | Merge #7787: [Moveonly] Create ui_interface.cpp | Wladimir J. van der Laan | |
fa10ce6 Move ui_interface.cpp to libbitcoin_server_a_SOURCES (MarcoFalke) fabbf80 [ui] Move InitError, InitWarning, AmountErrMsg (MarcoFalke) | |||
2016-04-19 | Merge #7905: test: move accounting_tests and rpc_wallet_tests to wallet/test | Wladimir J. van der Laan | |
b30fb42 test: Rename wallet.dat to wallet_test.dat (Wladimir J. van der Laan) a25a4f5 wallet_ismine.h → script/ismine.h (Wladimir J. van der Laan) f4eae2d test: Create test fixture for wallet (Wladimir J. van der Laan) de39c95 test: move accounting_tests and rpc_wallet_tests to wallet/test (Wladimir J. van der Laan) | |||
2016-04-18 | test: Rename wallet.dat to wallet_test.dat | Wladimir J. van der Laan | |
Indicate that the file name is not hardcoded, and a little bit of safety so that it never nukes the main wallet. Suggestion by Marco Falke. | |||
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-18 | test: Create test fixture for wallet | Wladimir J. van der Laan | |
Removes all the `#ifdef ENABLE_WALLET` from `test_bitcoin` by making the wallet tests use their own fixture. | |||
2016-04-18 | Merge #7900: fix spelling mistake | Wladimir J. van der Laan | |
3107c47 fix spelling mistake (Chris Moore) | |||
2016-04-18 | test: move accounting_tests and rpc_wallet_tests to wallet/test | Wladimir J. van der Laan | |
Move the two other wallet tests to where they belong. | |||
2016-04-17 | fix spelling mistake | Chris Moore | |
2016-04-16 | add missing newline | Chris Moore | |
Without the newline I see "bein" where the two lines are concatenated: Note that all inputs selected must be of standard form and P2SH scripts must *bein* the wallet using importaddress or addmultisigaddress (to calculate fees). | |||
2016-04-15 | Add lockUnspents option to fundrawtransaction | João Barbosa | |
2016-04-15 | Add change options to fundrawtransaction | João Barbosa | |
2016-04-14 | Merge #7812: Tiny refactor of `IsRBFOptIn`, avoid exception | Wladimir J. van der Laan | |
4f7c959 Refactor IsRBFOptIn, avoid exception (Jonas Schnelli) | |||
2016-04-06 | [Wallet] slightly refactor GetOldestKeyPoolTime() | Jonas Schnelli | |
2016-04-06 | Refactor IsRBFOptIn, avoid exception | Jonas Schnelli | |
2016-04-03 | [doc] Fix doxygen comments for members | MarcoFalke | |
2016-04-02 | [ui] Move InitError, InitWarning, AmountErrMsg | MarcoFalke | |
2016-04-02 | Merge #7691: [Wallet] refactor wallet/init interaction | Wladimir J. van der Laan | |
25340b7 [Wallet] refactor wallet/init interaction (Jonas Schnelli) | |||
2016-03-31 | rpc: Register calls where they are defined | Wladimir J. van der Laan | |
Split out methods to every module, apart from 'help' and 'stop' which are implemented in rpcserver.cpp itself. - This makes it easier to add or remove RPC commands - no longer everything that includes rpcserver.h has to be rebuilt when there's a change there. - Cleans up `rpc/server.h` by getting rid of the huge cluttered list of function definitions. - Removes most of the bitcoin-specific code from rpcserver.cpp and .h. Continues #7307 for the non-wallet. | |||
2016-03-29 | Merge #7558: [RPC] Add import/removeprunedfunds rpc call | Wladimir J. van der Laan | |
f1bb13c Added companion removeprunedfunds call. (instagibbs) 7eb7029 Add importprunedfunds rpc call (instagibbs) | |||
2016-03-29 | [Wallet][RPC] add missing abandon status documentation | Jonas Schnelli | |
2016-03-24 | Merge #7506: Use CCoinControl selection in CWallet::FundTransaction | Wladimir J. van der Laan | |
d6cc6a1 Use CCoinControl selection in CWallet::FundTransaction (João Barbosa) | |||
2016-03-23 | Fix lockunspents help message | João Barbosa | |
2016-03-23 | [Wallet][RPC] add abandoned status to listtransactions | Jonas Schnelli | |
2016-03-23 | Added companion removeprunedfunds call. | instagibbs | |
2016-03-23 | Add importprunedfunds rpc call | instagibbs | |
2016-03-23 | Merge #7715: Fix calculation of balances and available coins. | Wladimir J. van der Laan | |
68d4282 Fix calculation of balances and available coins. (Alex Morcos) | |||
2016-03-22 | Prevent multiple calls to CWallet::AvailableCoins | João Barbosa | |
2016-03-22 | [Wallet] refactor wallet/init interaction | Jonas Schnelli | |
2016-03-21 | Implement "feefilter" P2P message. | Alex Morcos | |
The "feefilter" p2p message is used to inform other nodes of your mempool min fee which is the feerate that any new transaction must meet to be accepted to your mempool. This will allow them to filter invs to you according to this feerate. | |||
2016-03-21 | Correct importaddress help reference to importpubkey | Denis Lukianov | |
2016-03-18 | Fix calculation of balances and available coins. | Alex Morcos | |
No longer consider coins which aren't in our mempool. Add test for regression in abandonconflict.py | |||
2016-03-14 | List solvability in listunspent output and improve help | Pieter Wuille | |
2016-03-14 | [qt] Remove 0-fee from send dialog | MarcoFalke | |
2016-03-14 | [wallet] Move hardcoded file name out of log messages | MarcoFalke | |
2016-03-14 | [Wallet] optimize return value of InitLoadWallet() | Jonas Schnelli | |
2016-03-11 | [Wallet] move "load wallet phase" to CWallet | Jonas Schnelli | |
2016-03-11 | Merge #7576: [Wallet] move wallet help string creation to CWallet | Wladimir J. van der Laan | |
72c2651 [Wallet] move wallet help string creation to CWallet (Jonas Schnelli) | |||
2016-03-08 | Use CCoinControl selection in CWallet::FundTransaction | João Barbosa | |
2016-03-05 | [Wallet] move wallet help string creation to CWallet | Jonas Schnelli | |