2018-07-13 07:01:03
this is dumb slow and could be much faster
GitHub
2018-07-13 07:14:11
*https://github.com/snowblossomcoin/snowblossom/compare/e8fd98b8a244...40ecbf8be2e5*
https://github.com/snowblossomcoin/snowblossom/commit/40ecbf8be2e53c6dbf1fe436b3d7fc0a2e97698b - parallel mem load
GitHub
2018-07-13 07:15:55
[snowblossomcoin/snowblossom] Issue closed by fireduck64
GitHub
2018-07-13 07:18:21
*https://github.com/snowblossomcoin/snowblossom/compare/40ecbf8be2e5...b45b7029d835*
https://github.com/snowblossomcoin/snowblossom/commit/b45b7029d835c2a4cee8186540bab8a247b01ebb - shut down threads when done
GitHub
2018-07-13 07:30:56
*https://github.com/snowblossomcoin/snowblossom/compare/b45b7029d835...cd0af3ff5049*
https://github.com/snowblossomcoin/snowblossom/commit/cd0af3ff50498c85e317efacf8f39c3d8eea7669 - move gc out of thread loop
GitHub
2018-07-13 13:02:04
It would be nice if the first time you ran the miner it asked questions and added the responses to the config. Ideally it would be nice if the wallet generation that happens when running the client for the first time could happen when running the miner for the first time if there is no wallet present.
Example
```
./miner.sh
**Solo or Pool?**
Pool
**Pool address to connect to? Leave blank for http://snowday.fun**
http://snow.protopool.io
**Wallet address to mine to? Leave blank to generate and use a local wallet.**
**Wallet generation in process..
Using local wallet.db**
**Generate snowfields automatically? This takes a very long time alternatively you can download via torrent at http://www.snowblossom.org. Yes or No**
No
**Enable memfield mining? Requires enough system memory to fit the current snowfield plus overhead for the mining threads. Yes or No**
Yes
Starting miner....
```
This is similar to https://github.com/ProgrammerDan/arionum-java/releases if you would like to see an example.
GitHub
2018-07-13 18:44:50
the problem with that is you'd have to link the client to the miner
Clueless
2018-07-13 18:44:56
right?
Clueless
2018-07-13 18:45:44
that isn't a problem
Fireduck
2018-07-13 18:45:56
we already include the client code as a library in the miner for some stuff
Fireduck
2018-07-13 18:46:19
Previously I avoided having the miner generate the wallet since I was worried about race conditions
Fireduck
2018-07-13 18:46:29
but with the new wallet setup, that isn't a concern
Fireduck