diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-07-10 17:50:01 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-07-10 17:50:21 +0200 |
commit | 9edda0c5f5f20bc6b302ad51fa5ec40ed9da184d (patch) | |
tree | eadb542ca07d3e0e12f0a9e81cb290654fb3c757 | |
parent | 1d4805ce04645f3203b0cfd3d66ea710e7433eb4 (diff) | |
parent | 58e9864083118b538a46124f034c18dd582f4209 (diff) |
Merge #10747: [rpc] fix verbose argument for getblock in bitcoin-cli
58e9864 [rpc] fix verbose argument for getblock in bitcoin-cli (John Newbery)
Tree-SHA512: 7f176e1ddd9f3f7722ea0d268549629567ecf0c30bebf368824997566df0bfa01d31cf761abc9ca355e48c0bf0cb06d49d15a02b858999fcb7472dc7df2fbbf2
-rw-r--r-- | src/rpc/client.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index a3ea5390ee..8fac8af3ec 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -79,6 +79,7 @@ static const CRPCConvertParam vRPCConvertParams[] = { "listunspent", 3, "include_unsafe" }, { "listunspent", 4, "query_options" }, { "getblock", 1, "verbosity" }, + { "getblock", 1, "verbose" }, { "getblockheader", 1, "verbose" }, { "getchaintxstats", 0, "nblocks" }, { "gettransaction", 1, "include_watchonly" }, |