2019-11-22 03:55:56
[snowblossomcoin/channels] Issue opened by fireduck64

GitHub
2019-11-22 05:10:22
*https://github.com/snowblossomcoin/snowblossom/compare/b4d80e88da66...dec995abb8d2*
https://github.com/snowblossomcoin/snowblossom/commit/dec995abb8d2f8b52a8bad3723961dd4a1319bd1 - names on explorer

GitHub
2019-11-22 05:14:15
[snowblossomcoin/channels] Issue closed by fireduck64

GitHub
2019-11-22 05:32:08
*https://github.com/snowblossomcoin/channels/compare/ec91c2c32184...99437824857f*
https://github.com/snowblossomcoin/channels/commit/99437824857f500da8aa837d67ef589845351cf9 - Add note to do caching

GitHub
2019-11-22 19:08:55
you have a lot more build time bazel noise

Rotonen
2019-11-22 19:09:53
yes

Fireduck
2019-11-22 19:10:01
they have decided that sha1 isn't cool any more

Fireduck
2019-11-22 19:10:15
and it is somewhat tedious to move over to sha256 for each package

Fireduck
2019-11-22 19:10:24
it should only be noisy on one run

Fireduck
2019-11-22 19:13:15
i only ever do nuke from orbit clean builds

Rotonen
2019-11-22 19:13:35
ha, good

Fireduck
2019-11-22 19:14:00
so now the node wants to reindex the whole blockchain?

Rotonen
2019-11-22 19:14:29
there is a weird pattern of burst of 30k and stall, burst of 30k and stall

Rotonen
2019-11-22 19:14:35
though that's probably disk limited

Rotonen
2019-11-22 19:15:35
it might be the blocks that were actually full in load testing

Fireduck
2019-11-22 19:15:55
yeah, it is rebuilding the transaction and address history indexes using my hashed trie data structure

Fireduck
2019-11-22 19:16:03
the same code as the utxo structure

Fireduck
2019-11-22 19:17:53
did you cock up the networking?
```Nov 22, 2019 7:17:38 PM snowblossom.node.SnowUserService sendNewBlocks
INFO: Error: io.grpc.StatusRuntimeException: CANCELLED: call already cancelled```

Rotonen
2019-11-22 19:19:04
I don't think so

Fireduck
2019-11-22 19:19:25
it's doing that roughly every 30s

Rotonen
2019-11-22 19:19:41
Is it connected to a mining pool?

Fireduck
2019-11-22 19:19:46
yep

Rotonen
2019-11-22 19:19:49
hum

Fireduck
2019-11-22 19:20:12
only a pool is connected to it

Rotonen
2019-11-22 19:20:21
and no one is connected to the pool

Rotonen
2019-11-22 19:20:28
yeah, it is absolutely doing that

Fireduck
2019-11-22 19:20:34
I wonder why....but I don't think it is new

Fireduck
2019-11-22 19:20:40
or a problem

Fireduck
2019-11-22 19:20:51
i jumped from some 1.5.x

Rotonen
2019-11-22 19:21:01
I'll take a look in a bit

Fireduck
2019-11-22 19:21:03
log spam is annoying, though

Rotonen
2019-11-22 20:19:14
agreed

Fireduck
2019-11-22 20:24:31
I can't figure out a reason that streaming request would ever be closed

Fireduck
2019-11-22 20:26:33
oh, nevermind, MrPlow is making a new channel each time for some reason

Fireduck
2019-11-22 20:26:33
nothing weird in the pool logs

Rotonen
2019-11-22 20:26:40
yay a bug

Rotonen
2019-11-22 20:26:52
I should switch it to my new stub management anyways

Fireduck
2019-11-22 20:27:36
git blame yourself for the root, though

Rotonen
2019-11-22 20:27:40
always good to self educate

Rotonen
2019-11-22 20:27:53
ha

Fireduck
2019-11-22 20:44:26
node logs have a lot of:
Nov 22, 2019 7:17:38 PM snowblossom.node.SnowUserService sendNewBlocks
INFO: Error: io.grpc.StatusRuntimeException: CANCELLED: call already cancelled
Mr plow is making a new connection every 20 seconds or so. It should use the existing one as long as we are still getting block templates.

GitHub
2019-11-22 20:45:25
*https://github.com/snowblossomcoin/snowblossom/compare/dec995abb8d2...a577f01ada35*
https://github.com/snowblossomcoin/snowblossom/commit/a577f01ada35ca19e5fe2dd971a8880d5fc6c0bb - Make MrPlow reuse existing connection

GitHub
2019-11-22 20:45:26
[snowblossomcoin/snowblossom] Issue closed by fireduck64

GitHub
2019-11-22 22:08:22
*https://github.com/snowblossomcoin/channels/compare/99437824857f...7612d25051b3*
https://github.com/snowblossomcoin/channels/commit/7612d25051b3d526e2fce2f6c7bf2c74952a9ca4 - Make autojoin an optional flag and fix static file update bug

GitHub
2019-11-22 22:26:28
@Fireduck deploying mrplow from https://github.com/snowblossomcoin/snowblossom/commit/a577f01ada35ca19e5fe2dd971a8880d5fc6c0bb fixed it for me

Rotonen
2019-11-22 22:26:59
Good

Fireduck
2019-11-22 22:27:36
what's `logger.fine` ?

Rotonen
2019-11-22 22:28:54
a log level that doesn't print on normal settings

Fireduck
2019-11-22 22:29:21
so the fix was to not break the connections and not log that anyways

Fireduck
2019-11-22 22:29:24
since we don't really care

Fireduck
2019-11-22 22:52:48
i did not update my node, so you actually also fixed something

Rotonen