diff --git a/CHANGELOG.md b/CHANGELOG.md index 47bc205c3d..4a48004446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Basic API authentication to protect exposure of API port to the internet [#1228](https://github.com/ethereum-mining/ethminer/pull/1228). +- Add `ispaused` information into response of `miner_getstathr` API query [#1232](https://github.com/ethereum-mining/ethminer/pull/1232). ## 0.15.0rc1 diff --git a/docs/API_DOCUMENTATION.md b/docs/API_DOCUMENTATION.md index 7e16069e29..e88be9d638 100644 --- a/docs/API_DOCUMENTATION.md +++ b/docs/API_DOCUMENTATION.md @@ -188,13 +188,13 @@ and expect back a response like this: "id": 1, "jsonrpc": "2.0", "result": { - "ethhashrate": 87563392, // Overall HashRate in H/s + "ethhashrate": 73056881, // Overall HashRate in H/s "ethhashrates": [ // Hashrate per GPU in H/S 14681287, 14506510, 14681287, 14506510, - 14506510, + 0, 14681287 ], "ethinvalid": 0, // Total number of invalid shares @@ -206,7 +206,7 @@ and expect back a response like this: 90, 90, 90, - 90, + 100, 90 ], "pooladdrs": "eu1.ethermine.org:4444", // Mining pool currently active @@ -224,9 +224,17 @@ and expect back a response like this: 50, 56, 58, - 61, + 68, 60 ], + "ispaused": [ // Is mining paused per GPU + false, + false, + false, + false, + true, + false + ], "version": "0.16.0.dev0+commit.41639944" // Running ethminer's version } }