mirror of
https://github.com/monero-project/monero-docs.git
synced 2024-12-22 19:49:22 +00:00
daemon-rpc: get_output_distribution params
This commit is contained in:
parent
0fba393c33
commit
c1e7353932
1 changed files with 3 additions and 1 deletions
|
@ -1280,6 +1280,8 @@ Inputs:
|
||||||
- _cumulative_ - boolean; (optional, default is `false`) States if the result should be cumulative (`true`) or not (`false`)
|
- _cumulative_ - boolean; (optional, default is `false`) States if the result should be cumulative (`true`) or not (`false`)
|
||||||
- _from_height_ - unsigned int; (optional, default is 0) starting height to check from
|
- _from_height_ - unsigned int; (optional, default is 0) starting height to check from
|
||||||
- _to_height_ - unsigned int; (optional, default is 0) ending height to check up to
|
- _to_height_ - unsigned int; (optional, default is 0) ending height to check up to
|
||||||
|
- _binary_ - boolean; for disabling epee encoding
|
||||||
|
- _compress_ - boolean; ignored if `binary` set to `false`
|
||||||
|
|
||||||
Outputs:
|
Outputs:
|
||||||
|
|
||||||
|
@ -1302,7 +1304,7 @@ $ curl http://127.0.0.1:18081/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"g
|
||||||
"distributions": [{
|
"distributions": [{
|
||||||
"amount": 2628780000,
|
"amount": 2628780000,
|
||||||
"base": 0,
|
"base": 0,
|
||||||
"distribution": "",
|
"distribution": [ ... ],
|
||||||
"start_height": 1462078
|
"start_height": 1462078
|
||||||
}],
|
}],
|
||||||
"status": "OK"
|
"status": "OK"
|
||||||
|
|
Loading…
Reference in a new issue