aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test/rpcnestedtests.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix the hash of the best block to reflect the Dogecoin blockPatrick Lodder2020-07-221-1/+1
| | | | This was prev tested to be a Bitcoin block in qt rpc tests
* trivial: squash missing field 'argNames' initializer warning in qt testsWladimir J. van der Laan2017-01-201-1/+1
| | | | | | 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.
* Qt/Test: Make sure filtering sensitive data works correctly in nested commandsLuke Dashjr2016-12-291-2/+26
|
* Add a ForceSetArg method for testingMatt Corallo2016-12-271-3/+1
|
* Un-expose mapArgs from utils.hMatt Corallo2016-12-241-0/+2
|
* [Qt] Console: don't allow empty arguments when using the comma-syntaxJonas Schnelli2016-12-141-12/+20
|
* Qt/Test: Check handling of empty arguments in RPC debug consoleLuke Dashjr2016-12-131-0/+31
|
* Rename the remaining main.{h,cpp} to validation.{h,cpp}Matt Corallo2016-12-021-1/+1
|
* [Qt] RPC-Console: support nested commands and simple value queriesJonas Schnelli2016-08-231-0/+93
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]`