2018-06-21 00:23:31
@Fireduck Where is duckutil.RateReporter defined?
Protovist
2018-06-21 00:24:04
Oh, I guess I should look at the build file.
Protovist
2018-06-21 00:25:05
WORKSPACE: remote = "https://github.com/fireduck64/duckutil", Fireduck's package of java utilities
Protovist
2018-06-21 00:46:30
Heh. I got tired of writing the same stuff for each project
Fireduck
2018-06-21 01:43:52
Tiny fix to help folks who put spaces in directory names.
GitHub
2018-06-21 01:47:06
[snowblossomcoin/snowblossom] #91 Fix cmd_here.bat for directories with spaces in them
GitHub
2018-06-21 01:47:07
*https://github.com/snowblossomcoin/snowblossom/compare/2e18c7d7563a...9c49eb2cd8b2*
https://github.com/snowblossomcoin/snowblossom/commit/07825d8c7731d2ad879d34fb20469ac82a23ed4a - Fix cmd_here.bat for directories with spaces in them
https://github.com/snowblossomcoin/snowblossom/commit/9c49eb2cd8b21c2e468d9dcd473dbacab9ecfae9 - Merge pull request #91 from ldub/master
GitHub
2018-06-21 05:26:12
*https://github.com/snowblossomcoin/snowblossom/compare/9c49eb2cd8b2...630ce50b1009*
https://github.com/snowblossomcoin/snowblossom/commit/630ce50b1009dbc0ec2afacacdac5a7cd761d0d3 - minor improvements
GitHub
2018-06-21 15:06:22
OK, it's something else that decreased my hashrate. I'm getting the same on master..
Tyler Boone
2018-06-21 15:06:29
and after a restart
Tyler Boone
2018-06-21 15:53:56
@Tyler Boone which exact metric do you use to quantify?
Rotonen
2018-06-21 15:59:19
1 hour hashrate after running > 2 hours
Tyler Boone
2018-06-21 16:17:55
Fucking hell. Bat files and configs are in Unix line endings.
Fireduck
2018-06-21 16:18:01
Unusable on windows
Fireduck
2018-06-21 16:22:07
Again....
GitHub
2018-06-21 17:20:03
*https://github.com/snowblossomcoin/snowblossom/compare/630ce50b1009...6e39aaed1c14*
https://github.com/snowblossomcoin/snowblossom/commit/6e39aaed1c142016c066b12ff6784a7de211f720 - unix2dos
GitHub
2018-06-21 17:21:10
[snowblossomcoin/snowblossom] Issue closed by fireduck64
GitHub
2018-06-21 17:35:27
@Fireduck you should make a local pre-commit hook with dos2unix (and unix2dos) for that
Rotonen
2018-06-21 17:35:58
@Fireduck also potentially a `.gitattrs` override for line endings on specific files, otherwise the repo default (as in probably the git default) of LF overrides
Rotonen
2018-06-21 17:37:46
see `text eol=crlf` and `text eol=lf`
https://git-scm.com/docs/gitattributes
Rotonen
2018-06-21 17:38:22
actually the pre-commit hook is a bad legacy crutch, git can now do that for you, even per hierarchy - you can have non-global git dotfiles peppered in your repo
Rotonen
2018-06-21 17:39:55
I'll check that out, thanks
Fireduck
2018-06-21 17:43:50
that flow looks pretty sweet actually as the end developer never has to figure that stuff out, can just work on files in their editor 'natively', this was a good find, will deploy in my own stuff as well soon
Rotonen
2018-06-21 17:46:56
LERNINGS
Tyler Boone
2018-06-21 18:04:23
https://github.com/fireduck you should make a local pre-commit hook with dos2unix (and unix2dos) for that
https://github.com/fireduck also potentially a `.gitattrs` override for line endings on specific files, otherwise the repo default (as in probably the git default) of LF overrides
see `text eol=crlf` and `text eol=lf`
https://git-scm.com/docs/gitattributes
actually the pre-commit hook is a bad legacy crutch, git can now do that for you, even per hierarchy - you can have non-global git dotfiles peppered in your repo
GitHub
2018-06-21 19:09:17
I tried to switch from 1.0.6 by copying my wallet and the snow and snow.db files to the folder for 1.1.2 and when I ran pool-miner.bat, this was the result:
```
[2018-06-21 20:01:58] INFO snowblossom.miner.FieldScan scan Not loading 10 snowblossom.10 (shai-hulud), directory not present: snow\snowblossom.10
[2018-06-21 20:01:58] INFO snowblossom.miner.FieldScan scan Not loading 11 snowblossom.11 (avanc), directory not present: snow\snowblossom.11
Exception in thread "main" java.lang.IllegalArgumentException: Invalid host or port: 23380
at io.grpc.internal.GrpcUtil.authorityFromHostAndPort(GrpcUtil.java:480)
at io.grpc.netty.NettyChannelBuilder.<init>(NettyChannelBuilder.java:115)
at io.grpc.netty.NettyChannelBuilder.forAddress(NettyChannelBuilder.java:101)
at io.grpc.netty.NettyChannelProvider.builderForAddress(NettyChannelProvider.java:37)
at io.grpc.netty.NettyChannelProvider.builderForAddress(NettyChannelProvider.java:23)
at io.grpc.ManagedChannelBuilder.forAddress(ManagedChannelBuilder.java:36)
at snowblossom.miner.PoolMiner.subscribe(PoolMiner.java:130)
at snowblossom.miner.PoolMiner.<init>(PoolMiner.java:109)
at snowblossom.miner.PoolMiner.main(PoolMiner.java:49)
Caused by: java.net.URISyntaxException: Expected hostname at index 2: //:23380
at java.net.URI$Parser.fail(Unknown Source)
at java.net.URI$Parser.failExpecting(Unknown Source)
at java.net.URI$Parser.parseHostname(Unknown Source)
at java.net.URI$Parser.parseServer(Unknown Source)
at java.net.URI$Parser.parseAuthority(Unknown Source)
at java.net.URI$Parser.parseHierarchical(Unknown Source)
at java.net.URI$Parser.parse(Unknown Source)
at java.net.URI.<init>(Unknown Source)
at io.grpc.internal.GrpcUtil.authorityFromHostAndPort(GrpcUtil.java:478)
... 8 more
```
GitHub