2018-07-18 04:40:26
If anyone has feelings about json rpc calls they want in the client, speak now
Fireduck
2018-07-18 04:40:32
I'm thinking:
Fireduck
2018-07-18 04:41:15
list_addresses, getfresh, send, broadcast, getbalance <optional address>
Fireduck
2018-07-18 06:01:01
*https://github.com/snowblossomcoin/snowblossom/compare/481d6ec6dda3...5518229331fa*
https://github.com/snowblossomcoin/snowblossom/commit/5518229331fa1ea66d0f970017d5c1e62c5a3f94 - basic import export
GitHub
2018-07-18 06:28:22
*https://github.com/snowblossomcoin/snowblossom/compare/5518229331fa...bc65a13a132c*
https://github.com/snowblossomcoin/snowblossom/commit/bc65a13a132cb69dc5641a037fd607b039972772 - import export help
GitHub
2018-07-18 07:06:59
@Fireduck use the median interval of the last 10 shares for difficulty ramping instead of a rolling average?
Rotonen
2018-07-18 15:43:27
Probably smart
Fireduck
2018-07-18 15:43:54
Really I hacked that MrPlow together in a day or so
Fireduck
2018-07-18 15:44:44
I was hoping someone else would make improvements for me
Fireduck
2018-07-18 15:56:18
i'd even peg it at the median of the past 100 share intervals, but i'm patient like that
Rotonen
2018-07-18 15:57:11
if i'll touch it i'll most likely just attack the thread autotuning stuff
Rotonen
2018-07-18 15:57:27
also just kill the solo miner at this point?
Rotonen
2018-07-18 15:57:43
even something like 10Mh/s would not be viable to solo
Rotonen
2018-07-18 15:58:26
I'd be inclined to leave the solo code there but not include it in release zip
Fireduck
2018-07-18 15:59:29
seems fair if the codebase is mostly shared and there is no major engineering around also keeping the solo worker
Rotonen
2018-07-18 16:00:18
the pool stats stuff is weird:
```
INFO: Mining rate: 5-min: 503.316K/s, 15-min: 1.091M/s, hour: 827.210K/s
INFO: Mining rate: 0.000/sec - at this rate ∞ hours per block
```
Rotonen
2018-07-18 16:00:41
i suppose the latter is based on actual blocks found and the first one on the shares * weight received?
Rotonen
2018-07-18 16:05:25
It is just diff math based on 15 second rate and block difficulty
Fireduck
2018-07-18 16:11:29
oh, so with less than 4+ miners (or probably less than 10+ miners) it cannot even
Rotonen
2018-07-18 16:11:51
the data just falls through the sample window
Rotonen
2018-07-18 16:12:08
Correct. It is dumb.
Fireduck
2018-07-18 16:13:45
naw, that's fine
Rotonen
2018-07-18 16:13:56
what is dumb is running a pool with practically zero miners on it
Rotonen
2018-07-18 16:14:06
so things being flaky on the low end is quite acceptable
Rotonen
2018-07-18 16:40:45
it was really a case of copying code from the solo miner and not adjusting it :wink:
Fireduck