rpc: add help for new gcs commands
This commit is contained in:
parent
5596b63846
commit
4cb1c950e0
1 changed files with 11 additions and 3 deletions
|
@ -334,9 +334,16 @@ var helpDescsEnUS = map[string]string{
|
||||||
|
|
||||||
// GetCFilterCmd help.
|
// GetCFilterCmd help.
|
||||||
"getcfilter--synopsis": "Returns a block's committed filter given its hash.",
|
"getcfilter--synopsis": "Returns a block's committed filter given its hash.",
|
||||||
|
"getcfilter-filtertype": "The type of filter to return (0=regular, 1=extended)",
|
||||||
"getcfilter-hash": "The hash of the block",
|
"getcfilter-hash": "The hash of the block",
|
||||||
"getcfilter--result0": "The block's committed filter",
|
"getcfilter--result0": "The block's committed filter",
|
||||||
|
|
||||||
|
// GetCFilterHeaderCmd help.
|
||||||
|
"getcfilterheader--synopsis": "Returns a block's compact filter header given its hash.",
|
||||||
|
"getcfilterheader-filtertype": "The type of filter header to return (0=regular, 1=extended)",
|
||||||
|
"getcfilterheader-hash": "The hash of the block",
|
||||||
|
"getcfilterheader--result0": "The block's gcs filter header",
|
||||||
|
|
||||||
// GetConnectionCountCmd help.
|
// GetConnectionCountCmd help.
|
||||||
"getconnectioncount--synopsis": "Returns the number of active connections to other peers.",
|
"getconnectioncount--synopsis": "Returns the number of active connections to other peers.",
|
||||||
"getconnectioncount--result0": "The number of connections",
|
"getconnectioncount--result0": "The number of connections",
|
||||||
|
@ -684,6 +691,7 @@ var rpcResultTypes = map[string][]interface{}{
|
||||||
"getblocktemplate": {(*btcjson.GetBlockTemplateResult)(nil), (*string)(nil), nil},
|
"getblocktemplate": {(*btcjson.GetBlockTemplateResult)(nil), (*string)(nil), nil},
|
||||||
"getblockchaininfo": {(*btcjson.GetBlockChainInfoResult)(nil)},
|
"getblockchaininfo": {(*btcjson.GetBlockChainInfoResult)(nil)},
|
||||||
"getcfilter": {(*string)(nil)},
|
"getcfilter": {(*string)(nil)},
|
||||||
|
"getcfilterheader": {(*string)(nil)},
|
||||||
"getconnectioncount": {(*int32)(nil)},
|
"getconnectioncount": {(*int32)(nil)},
|
||||||
"getcurrentnet": {(*uint32)(nil)},
|
"getcurrentnet": {(*uint32)(nil)},
|
||||||
"getdifficulty": {(*float64)(nil)},
|
"getdifficulty": {(*float64)(nil)},
|
||||||
|
|
Loading…
Reference in a new issue