@Fireduck Where is duckutil.RateReporter defined?
Oh, I guess I should look at the build file.
WORKSPACE: remote = "https://github.com/fireduck64/duckutil", Fireduck's package of java utilities
Heh. I got tired of writing the same stuff for each project
Tiny fix to help folks who put spaces in directory names.
[snowblossomcoin/snowblossom] #91 Fix cmd_here.bat for directories with spaces in them
OK, it's something else that decreased my hashrate. I'm getting the same on master..
and after a restart
@Tyler Boone which exact metric do you use to quantify?
1 hour hashrate after running > 2 hours
Fucking hell. Bat files and configs are in Unix line endings.
Unusable on windows
Again....
[snowblossomcoin/snowblossom] Issue closed by fireduck64
@Fireduck you should make a local pre-commit hook with dos2unix (and unix2dos) for that
@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
I'll check that out, thanks
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
LERNINGS
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
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 ```