Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-05 | [qa] Switch to py3 | MarcoFalke | |
2016-04-19 | Move method to check matches within arrays on util.py | Joao Fonseca | |
2016-03-31 | [qa] Use python2/3 syntax | MarcoFalke | |
2016-01-09 | [qa] Test walletpassphrase timeout | MarcoFalke | |
2015-12-13 | Bump copyright headers to 2015 | MarcoFalke | |
2015-11-16 | [qa] keypool: DRY: Use test framework | MarcoFalke | |
2015-11-16 | [qa] keypool: Fix white space to prepare transition to test framework | MarcoFalke | |
2015-08-18 | Fix crash when mining with empty keypool. | Daniel Kraft | |
Since the introduction of the ScriptForMining callback, the mining functions (setgenerate and generate) crash with an assertion failure (due to a NULL pointer script returned) if the keypool is empty. Fix this by giving a proper error. | |||
2015-05-21 | rpc-tests: remove python-bitcoinrpc directory | Jonas Schnelli | |
place authproxy.py at same level as other utility classes | |||
2015-05-18 | [QA] restructure rpc tests directory | Jonas Schnelli | |
* move non-test classes to subdir `test-framework` | |||
2014-11-27 | Fix python usage for arch's broken maintainers | Matt Corallo | |
2014-10-23 | Update license in pull-tester and rpc-tests | Michael Ford | |
Add missing copyright/license header where necessary | |||
2014-07-11 | `getrawchangeaddress` should fail when keypool exhausted | Wladimir J. van der Laan | |
An user on IRC reported an issue where `getrawchangeaddress` keeps returning a single address when the keypool is exhausted. In my opinion this is strange behaviour. - Change CReserveKey to fail when running out of keys in the keypool. - Make `getrawchangeaddress` return RPC_WALLET_KEYPOOL_RAN_OUT when unable to create an address. - Add a Python RPC test for checking the keypool behaviour in combination with encrypted wallets. |