Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-03-10 | Make qt test compatible with TestChain100Setup framework | Russell Yanofsky | |
Reset global state after rpc tests, and remove unnecessary ECC initialization to prevent assert error if it is initialized twice. | |||
2017-01-20 | trivial: squash missing field 'argNames' initializer warning in qt tests | Wladimir J. van der Laan | |
The additional initializer is for the named arguments, which are unused in the test (and unfilled global fields will be initialized to 0 anyhow), so this is a no-op apart from the warning. | |||
2016-12-29 | Qt/Test: Make sure filtering sensitive data works correctly in nested commands | Luke Dashjr | |
2016-12-27 | Add a ForceSetArg method for testing | Matt Corallo | |
2016-12-24 | Un-expose mapArgs from utils.h | Matt Corallo | |
2016-12-14 | [Qt] Console: don't allow empty arguments when using the comma-syntax | Jonas Schnelli | |
2016-12-13 | Qt/Test: Check handling of empty arguments in RPC debug console | Luke Dashjr | |
2016-12-02 | Rename the remaining main.{h,cpp} to validation.{h,cpp} | Matt Corallo | |
2016-08-23 | [Qt] RPC-Console: support nested commands and simple value queries | Jonas Schnelli | |
Commands can be executed with bracket syntax, example: `getwalletinfo()`. Commands can be nested, example: `sendtoaddress(getnewaddress(), 10)`. Simple queries are possible: `listunspent()[0][txid]` Object values are accessed with a non-quoted string, example: [txid]. Fully backward compatible. `generate 101` is identical to `generate(101)` Result value queries indicated with `[]` require the new brackets syntax. Comma as argument separator is now also possible: `sendtoaddress,<address>,<amount>` Space as argument separator works also with the bracket syntax, example: `sendtoaddress(getnewaddress() 10) No dept limitation, complex commands are possible: `decoderawtransaction(getrawtransaction(getblock(getbestblockhash())[tx][0]))[vout][0][value]` |