dogecoin/src/rpc
Rusty Russell 85c807c9ea getblockchaininfo: make bip9_softforks an object, not an array.
We can't change "softforks", but it seems far more logical to use tags
in an object rather than using an "id" field in an array.

For example, to get the csv status before, you need to iterate the
array to find the entry with 'id' field equal to "csv":

   jq '.bip9_softforks | map(select(.id == "csv"))[] | .status'

Now:
   jq '.bip9_softforks.csv.status'

There is no issue with fork names being incompatible with JSON tags,
since we're selecting them ourselves.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2016-04-13 16:53:52 +09:30
..
blockchain.cpp getblockchaininfo: make bip9_softforks an object, not an array. 2016-04-13 16:53:52 +09:30
client.cpp Merge #7793: [doxygen] Fix member comments 2016-04-05 17:49:47 +02:00
client.h move rpc* to rpc/ 2016-01-21 08:36:55 +11:00
mining.cpp rpc: Register calls where they are defined 2016-03-31 10:48:32 +02:00
misc.cpp rpc: Register calls where they are defined 2016-03-31 10:48:32 +02:00
net.cpp rpc: Register calls where they are defined 2016-03-31 10:48:32 +02:00
protocol.cpp move rpc* to rpc/ 2016-01-21 08:36:55 +11:00
protocol.h move rpc* to rpc/ 2016-01-21 08:36:55 +11:00
rawtransaction.cpp rpc: Register calls where they are defined 2016-03-31 10:48:32 +02:00
register.h rpc: Register calls where they are defined 2016-03-31 10:48:32 +02:00
server.cpp rpc: Register calls where they are defined 2016-03-31 10:48:32 +02:00
server.h rpc: Register calls where they are defined 2016-03-31 10:48:32 +02:00