mirror of
https://github.com/GOSTSec/sgminer
synced 2025-02-05 03:24:26 +00:00
Be consistent with the get_statline function.
This commit is contained in:
parent
911b1788c7
commit
a10e3294bd
@ -1523,10 +1523,8 @@ static void get_statline(char *buf, struct cgpu_info *cgpu)
|
|||||||
char displayed_hashes[16], displayed_rolling[16];
|
char displayed_hashes[16], displayed_rolling[16];
|
||||||
uint64_t dh64, dr64;
|
uint64_t dh64, dr64;
|
||||||
|
|
||||||
dh64 = cgpu->total_mhashes / total_secs;
|
dh64 = (double)total_mhashes_done / total_secs * 1000000ull;
|
||||||
dh64 *= 1000000ull;
|
dr64 = (double)rolling * 1000000ull;
|
||||||
dr64 = cgpu->rolling;
|
|
||||||
dr64 *= 1000000ull;
|
|
||||||
suffix_string(dh64, displayed_hashes, 4);
|
suffix_string(dh64, displayed_hashes, 4);
|
||||||
suffix_string(dr64, displayed_rolling, 4);
|
suffix_string(dr64, displayed_rolling, 4);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user