| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix the hash of the best block to reflect the Dogecoin block | Patrick Lodder | 2020-07-22 | 1 | -1/+1 |
| | | | | | This was prev tested to be a Bitcoin block in qt rpc tests | ||||
| * | trivial: squash missing field 'argNames' initializer warning in qt tests | Wladimir J. van der Laan | 2017-01-20 | 1 | -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 commands | Luke Dashjr | 2016-12-29 | 1 | -2/+26 |
| | | |||||
| * | Add a ForceSetArg method for testing | Matt Corallo | 2016-12-27 | 1 | -3/+1 |
| | | |||||
| * | Un-expose mapArgs from utils.h | Matt Corallo | 2016-12-24 | 1 | -0/+2 |
| | | |||||
| * | [Qt] Console: don't allow empty arguments when using the comma-syntax | Jonas Schnelli | 2016-12-14 | 1 | -12/+20 |
| | | |||||
| * | Qt/Test: Check handling of empty arguments in RPC debug console | Luke Dashjr | 2016-12-13 | 1 | -0/+31 |
| | | |||||
| * | Rename the remaining main.{h,cpp} to validation.{h,cpp} | Matt Corallo | 2016-12-02 | 1 | -1/+1 |
| | | |||||
| * | [Qt] RPC-Console: support nested commands and simple value queries | Jonas Schnelli | 2016-08-23 | 1 | -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]` | |||||