aboutsummaryrefslogtreecommitdiff
path: root/src/test/rpc_wallet_tests.cpp
Commit message (Collapse)AuthorAgeFilesLines
* test: move accounting_tests and rpc_wallet_tests to wallet/testWladimir J. van der Laan2016-04-181-229/+0
| | | | Move the two other wallet tests to where they belong.
* move rpc* to rpc/Daniel Cousens2016-01-211-2/+2
|
* Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
|
* [Univalue] add univalue over subtreeJonas Schnelli2015-10-011-1/+1
| | | | similar to secp256k1 include and compile univalue over a subtree
* locks: don't lock cs_wallet before making rpc callsCory Fields2015-08-071-19/+20
|
* Add fundrawtransaction RPC methodMatt Corallo2015-06-111-0/+6
|
* Remove JSON Spirit wrapper, remove JSON Spirit leftoversJonas Schnelli2015-06-041-5/+6
| | | | | | - implement find_value() function for UniValue - replace all Array/Value/Object types with UniValues, remove JSON Spirit to UniValue wrapper - remove JSON Spirit sources
* remove JSON Spirit UniValue wrapperJonas Schnelli2015-06-041-2/+2
|
* Includes: Do not include main.h from any other headerJorge Timón2015-03-241-0/+1
|
* [Move Only] Move wallet related things to src/wallet/Jonas Schnelli2015-03-121-1/+1
| | | | could once be renamed from /src/wallet to /src/legacywallet.
* Reinitialize state in between individual unit tests.Pieter Wuille2015-03-031-1/+3
| | | | | This changes the TestingSetup fixture to be per-unit-test rather than global. Most tests don't need it, so it's only invoked in a few.
* Adding RPC tests for the following wallet related calls: getbalance,Everett Forth2014-12-231-1/+36
| | | | | listsinceblock, listtransactions, listlockunspent, listaccounts listaddressgroupings
* Remove references to X11 licenceMichael Ford2014-12-161-1/+1
|
* Changed mixed indentation to four spacesEric Shaw2014-10-021-74/+73
| | | | Put `test/rpc_wallet_tests.cpp` through clang-format.
* Fixed setaccount accepting foreign addressEric Shaw2014-10-021-2/+6
| | | | | Fixed issue #4209 where using setaccount with a foreign address causes the address to be added to your receiving addresses.
* Merge pull request #3837Wladimir J. van der Laan2014-06-021-0/+87
|\ | | | | | | 75ebced added many rpc wallet tests (Alon Muroch)
| * added many rpc wallet testsAlon Muroch2014-04-011-0/+87
| | | | | | | | | | | | | | | | | | | | | | | | deleted the empty no throw test in rpc_wallet_tests line 65 fixed some comments starting verify tests finished verify message tests changed some comments
* | Add required locks in testsWladimir J. van der Laan2014-04-231-1/+1
|/ | | | Unit tests with DEBUG_LOCKORDER were running into assertions.
* Add licenses for tests and test dataWladimir J. van der Laan2014-03-181-0/+4
| | | | | | | | - Add license headers to source files (years based on commit dates) in `src/test` as well as `qa` - Add `README.md` to `src/test/data` specifying MIT license Fixes #3848
* Unit test fixes for AssertLockHeld / -DDEBUG_LOCKORDERGavin Andresen2014-01-241-0/+7
| | | | | | | | | Unit tests would fail if compiled with -DDEBUG_LOCKORDER (AssertLockHeld() would fail; AssertLockHeld() relies on the DEBUG_LOCKORDER code to keep track of locks held). Fixed by LOCK'ing the wallet mutex in the unit tests that manipulate the wallet.
* Split off rpc_wallet_testsWladimir J. van der Laan2013-12-041-0/+82
Split wallet tests from other RPC tests. Now no #ifdef ENABLE_WALLET are needed anymore in either file.