jminer producing error "b.j.c.n.t.NetworkRequestMiningInfoTask : Unable to get mining info from wallet." and stops sending data to pool
-
For some reason, I keep getting these errors, no matter the pool. Any idea what could be causing this?
jminer.properties
# ----------------------------------------------------------------------------------- # - BURSTCOIN JMINER --------- THIS IS EXPERIMENTAL SOFTWARE, USE ON YOUR OWN RISK! - # ----------------------------------------------------------------------------------- # jminer is a PoC (Proof of Capacity) miner with GPU support for Burstcoin (BURST) # (openCL will also work with CPU in needed) # # Requirements: # - Java8 (64bit recommend to use more memory) # - openCL # # PLEASE DONATE # # jminer would not be possible without openCL kernels and java code provided by 'burstDev', # he really deserves some tips for that! # BURST-QHCJ-9HB5-PTGC-5Q8J9 # # Feel free to support future development of mining engine ... # BURST-LUXE-RED2-G6JW-H4HG5 # ----------------------------------------------------------------------------------- # ----------------------------------------------------------------------------------- # NOTICE: your 'jminer.properties' hasn't got to contain all properties listed here # as long there is a default/fallback defined, mentioned in here. # ----------------------------------------------------------------------------------- # ----------------------------------------------------------------------------------- # - PLOT-FILES ---------------------------------------------------------------------- # ----------------------------------------------------------------------------------- # plotPaths - list of plot paths separated with , e.g. D:/,C:/,E:/plots,F:/plots (in one line) # (required) the miner will treat every path as 'physical' drive and use one thread for it # # scanPathsEveryRound - optional 'true' will check 'plotPaths' for changed plot files on every round # (default:true) 'false' will check only on start/restart # # listPlotFiles - optional ... list all plotFiles on start, If walletServer/soloServer is configured, # (default:false) it will show mined blocks and drive seeks/chunks of plotfile, too. # ----------------------------------------------------------------------------------- plotPaths=/Volumes/Mining1/,/Volumes/Mining2/ scanPathsEveryRound= listPlotFiles= # ----------------------------------------------------------------------------------- # - MINING MODE --------------------------------------------------------------------- # ----------------------------------------------------------------------------------- # poolMining - 'true' for pool mining, 'false' for solo mining. # (default:true) ensure to configure the chosen mining-mode below. # ----------------------------------------------------------------------------------- poolMining=true # ----------------------------------------------------------------------------------- # - MINING MODE - POOL ---------------------------------- ONLY NEEDED 4 POOL MINING - # ----------------------------------------------------------------------------------- # NOTICE: # ensure you already setup reward assignment # http://localhost:8125/rewardassignment.html # # numericAccountId - first number in all plot-files # (required for pool) # # poolServer - format is inclusive protocol and port e.g. 'http://pool.com:8125' # (required for pool) # # walletServer - define local or online wallet, to receive and show last winner! # (optional) if empty, winner feature will be just disabled. # format is inclusive protocol and port e.g. 'http://localhost:8125' # online use e.g. 'https://wallet.burst-team.us:8125' # # winnerRetriesOnAsync - number of retries to get winner from walletServer # (default:4) # winnerRetryIntervalInMs - time to wait until next retry to get winner from walletServer # (default:500) # ----------------------------------------------------------------------------------- numericAccountId=52xxxxxx485xxxxx33xxx poolServer=http://falconburstpool.xyz:8080 # Winner walletServer=https://wallet.burst.cryptoguru.org:8125 winnerRetriesOnAsync= winnerRetryIntervalInMs= # ----------------------------------------------------------------------------------- # - MINING MODE - SOLO ---------------------------------- ONLY NEEDED 4 SOLO MINING - # ----------------------------------------------------------------------------------- # soloServer - WARN! soloServer should be http://localhost:8125 or http://127.0.0.1:8125 # (default: Solo means you send your PASS on commit results! # http://localhost:8125) DO NOT try to use a online wallet or pool as Server! # # passPhrase - secretPhrase/password of solo mining burst-account # (required for solo) # # targetDeadline - min. deadline to be committed. e.g. 750000 # (optinal) # # triggerServer - emulates open wallet, to prevent it from # (default: false) falling asleep (not sure if needed at all) # # recommitDeadlines - recommits deadlines below 1200 3 times in a interval of 5 sec. # (default: false) experimental feature to increase chance that deadline gets propagated # e.g. on short disconnect or connected peers busy etc. # ----------------------------------------------------------------------------------- soloServer=http://localhost:8125 targetDeadline= triggerServer= recommitDeadlines= # ----------------------------------------------------------------------------------- # - OpenCL ----------------------------------------------------------------------------- # ----------------------------------------------------------------------------------- # The miner uses openCL for most of the mining calculations, ensure it is setup correctly. # Instructions can be found e.g. here (thanks cryo): # https://github.com/bhamon/gpuPlotGenerator/blob/master/README.md # You could also use that instruction to find your platformId and deviceId if needed. # # platformId - id of openCL platform on your system. one platform may have multiple # (default:0) devices, the miner currently uses just one (in general not the bottleneck) # # deviceId - specifies the device used by OCLCecker, can be your first GPU, # (default:0) in most cases it will not be 100% used. (depends on capacity) # ----------------------------------------------------------------------------------- platformId= deviceId= # ----------------------------------------------------------------------------------- # - MINING ENGINE ------------------------------------------------------------------- # ----------------------------------------------------------------------------------- # refreshInterval - interval of asking wallet/pool for mining info (in ms), # (default:2000) to check for new block # # updateMiningInfo - restart round on new generationSignature for same round # (default=true) as long as equal miningInfo was not already finished # (it may happen that miningInfo changes, and changes back later) # # connectionTimeout - increase the 'connectionTimeout' on network problems. # (default:12000) this timeout is used for all network requests. # if you use pool or online-wallet, the 12 sec. default may # cause timeout on committing nonces or getting mining info etc. # # debug - setting 'debug' to true will log additional information of the mining process, # (default:false) that are not related to mining, but to miner internals. # # writeLogFile - setting 'writeLogFile' to 'true' will write all logs from console to a file, too. # (default:false) the name of that file can be specified by 'logFilePath'. # # logFilePath - path (filename and optional directory, relative to miner location) # (default:log/jminer.log.txt) # # logPatternConsole - only needed if you want to configure your own log pattern e.g.: # logPatternFile %blue(%d{HH:mm:ss.SSS}) %green(%msg%n) # would only show colored time and message # Docs: https://logback.qos.ch/manual/layouts.html#ClassicPatternLayout # ----------------------------------------------------------------------------------- refreshInterval=2000 updateMiningInfo=true connectionTimeout=45000 debug= writeLogFile= logFilePath= logPatternConsole= logPatternFile= # ----------------------------------------------------------------------------------- # - MINING ENGINE - APPEARANCE / BEHAVIOR ------------------------------------------- # ----------------------------------------------------------------------------------- # readProgressPerRound - defines how often the mining progress is shown per round # (default:9) thats the 'xx% done ...' info. # # byteUnitDecimal - switch between decimal units (true): TB/GB/MB (divided by 1000), # (default:true) or binary units (false) TiB/GiB/MiB (divided by 1024) - https://en.wikipedia.org/wiki/Byte # # showDriveInfo - set this to 'true' to show info about every drive on finish reading it, # (default:false) this is useful to find the slow ones ... can help to optimize your setup. # # showSkippedDeadlines - set this to 'true' to show found deadlines below targetDeadline from # (default:true) this config or provided by pool (overwriting the targetDeadline specified in here) # ----------------------------------------------------------------------------------- readProgressPerRound= byteUnitDecimal= showDriveInfo= showSkippedDeadlines= # ----------------------------------------------------------------------------------- # - MINING ENGINE - MEMORY USAGE ---------------------------------------------------- # ----------------------------------------------------------------------------------- # chunkPartNonces - staggerSize defines number of nonces per chunk. # (default:320000) the miner will split chunks in smaller pieces called chunkParts. # this makes sense, to save memory and optimize speed. # in the best case chunkPart#1 will be checked before chunkPart#2 is # completely read ... depending on the power of your GPU. # if staggersize is smaller than chunkPartNonces, staggersize will be used. # e.g. play with +/- 160000 steps # # readerThreads - normally '0' means, the miner takes one thread per drive (plotPath) this is recommend. # (default:0) choosing a other number of 'readerThreads' can be useful on memory issues. # For example, if you mine on 4 drives (plotPaths), you can reduce the memory usage # by setting 'readerThreads=2', this will reduce mining speed but save memory. # ----------------------------------------------------------------------------------- chunkPartNonces= readerThreads=
Log
2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : Burstcoin (BURST) 2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : __ __ GPU assisted PoC-Miner 2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : |__| _____ |__| ____ ___________ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : version | |/ \| |/ \_/ __ \_ __ \ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : 0.4.11 | | Y Y \ | | \ ___/| | \/ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : /\__| |__|_| /__|___| /\___ >__| 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : \______| \/ \/ \/ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : mining engine: BURST-LUXE-RED2-G6JW-H4HG5 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : openCL checker: BURST-QHCJ-9HB5-PTGC-5Q8J9 2018-01-02 23:20:45.976 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:20:45.976 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : START block '443307', scoopNumber '232', capacity '15965 GB' 2018-01-02 23:20:45.976 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : targetDeadline '34560000', baseTarget '104047', genSig 'd7bbf9..' 2018-01-02 23:20:46.030 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '17170482438' > '34560000' skipped 2018-01-02 23:20:46.047 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '1050770607' > '34560000' skipped 2018-01-02 23:20:46.061 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 1% done (0TB 5GB), avg.'21 MB/s' 2018-01-02 23:20:46.330 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '325463012' > '34560000' skipped 2018-01-02 23:20:46.454 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '305469919' > '34560000' skipped 2018-01-02 23:20:46.778 INFO 696 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:20:46.778 INFO 696 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : POOL account 'BURST-UTS4-HPFZ-XJHL-B9BB2', assigned miners '227' 2018-01-02 23:20:46.778 INFO 696 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : balance '21 BURST', total mined '507747 BURST' 2018-01-02 23:20:46.944 INFO 696 --- [cTaskExecutor-3] burstcoin.jminer.JMinerCommandLine : winner block '443306', 'BURST-WKVB-JUF6-3DPK-DXG9B' 2018-01-02 23:20:47.094 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '188942523' > '34560000' skipped 2018-01-02 23:20:49.073 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '29793020' send (pool) [nonce '77073482'] 2018-01-02 23:20:49.316 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 12% done (1TB 777GB), avg.'129 MB/s', eff.'131 MB/s' 2018-01-02 23:20:50.926 INFO 696 --- [ readerPool-1] burstcoin.jminer.core.round.Round : dl '31142608' queued 2018-01-02 23:20:52.798 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 23% done (3TB 549GB), avg.'126 MB/s', eff.'124 MB/s' 2018-01-02 23:20:55.798 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 34% done (5TB 333GB), avg.'132 MB/s', eff.'145 MB/s' 2018-01-02 23:20:56.563 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '13221339' send (pool) [nonce '58144522'] 2018-01-02 23:20:57.016 INFO 696 --- [ readerPool-1] burstcoin.jminer.core.round.Round : dl '28778116' queued 2018-01-02 23:20:58.767 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 45% done (7TB 103GB), avg.'135 MB/s', eff.'145 MB/s' 2018-01-02 23:20:59.620 INFO 696 --- [ readerPool-1] burstcoin.jminer.core.round.Round : dl '22812593' queued 2018-01-02 23:20:59.702 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '6872100' send (pool) [nonce '24796107'] 2018-01-02 23:21:02.124 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 56% done (8TB 881GB), avg.'134 MB/s', eff.'129 MB/s' 2018-01-02 23:21:03.408 INFO 696 --- [TaskExecutor-10] burstcoin.jminer.JMinerCommandLine : dl '13221339' confirmed! [ 153d 0h 35m 39s ] 2018-01-02 23:21:05.425 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 67% done (10TB 655GB), avg.'133 MB/s', eff.'131 MB/s' 2018-01-02 23:21:05.965 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '13495' send (pool) [nonce '70639981'] 2018-01-02 23:21:06.178 INFO 696 --- [TaskExecutor-17] burstcoin.jminer.JMinerCommandLine : dl '13495' confirmed! [ 0d 3h 44m 55s ] 2018-01-02 23:21:08.459 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 78% done (12TB 417GB), avg.'134 MB/s', eff.'141 MB/s' 2018-01-02 23:21:12.173 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 89% done (14TB 193GB), avg.'132 MB/s', eff.'116 MB/s' 2018-01-02 23:21:18.575 INFO 696 --- [cTaskExecutor-5] burstcoin.jminer.JMinerCommandLine : dl '29793020' confirmed! [ 344d 19h 50m 20s ] 2018-01-02 23:21:18.829 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 100% done (15TB 965GB), avg.'118 MB/s', eff.'64 MB/s' 2018-01-02 23:21:25.659 INFO 696 --- [TaskExecutor-13] burstcoin.jminer.JMinerCommandLine : dl '6872100' confirmed! [ 79d 12h 55m 0s ] 2018-01-02 23:21:25.909 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : FINISH block '443307', best deadline '13495', round time '39s 723ms' 2018-01-02 23:28:42.276 WARN 696 --- [askExecutor-245] b.j.c.n.t.NetworkRequestMiningInfoTask : Unable to get mining info from wallet.
-
To pre-empt, increasing the value for connectionTimeout has no effect. Tried several values from 12000 to 240000 and nothing helped.
And here is the log when I use debugMode=true:
2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : Burstcoin (BURST) 2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : __ __ GPU assisted PoC-Miner 2018-01-02 23:20:45.272 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : |__| _____ |__| ____ ___________ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : version | |/ \| |/ \_/ __ \_ __ \ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : 0.4.11 | | Y Y \ | | \ ___/| | \/ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : /\__| |__|_| /__|___| /\___ >__| 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : \______| \/ \/ \/ 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : mining engine: BURST-LUXE-RED2-G6JW-H4HG5 2018-01-02 23:20:45.273 INFO 696 --- [ main] burstcoin.jminer.JMinerCommandLine : openCL checker: BURST-QHCJ-9HB5-PTGC-5Q8J9 2018-01-02 23:20:45.976 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:20:45.976 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : START block '443307', scoopNumber '232', capacity '15965 GB' 2018-01-02 23:20:45.976 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : targetDeadline '34560000', baseTarget '104047', genSig 'd7bbf9..' 2018-01-02 23:20:46.030 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '17170482438' > '34560000' skipped # updateMiningInfo - restart round on new generationSignature for same round 2018-01-02 23:20:46.047 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '1050770607' > '34560000' skipped 2018-01-02 23:20:46.061 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 1% done (0TB 5GB), avg.'21 MB/s' 2018-01-02 23:20:46.330 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '325463012' > '34560000' skipped 2018-01-02 23:20:46.454 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '305469919' > '34560000' skipped 2018-01-02 23:20:46.778 INFO 696 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:20:46.778 INFO 696 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : POOL account 'BURST-UTS4-HPFZ-XJHL-B9BB2', assigned miners '227' 2018-01-02 23:20:46.778 INFO 696 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : balance '21 BURST', total mined '507747 BURST' 2018-01-02 23:20:46.944 INFO 696 --- [cTaskExecutor-3] burstcoin.jminer.JMinerCommandLine : winner block '443306', 'BURST-WKVB-JUF6-3DPK-DXG9B' 2018-01-02 23:20:47.094 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '188942523' > '34560000' skipped 2018-01-02 23:20:49.073 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '29793020' send (pool) [nonce '77073482'] 2018-01-02 23:20:49.316 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 12% done (1TB 777GB), avg.'129 MB/s', eff.'131 MB/s' 2018-01-02 23:20:50.926 INFO 696 --- [ readerPool-1] burstcoin.jminer.core.round.Round : dl '31142608' queued 2018-01-02 23:20:52.798 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 23% done (3TB 549GB), avg.'126 MB/s', eff.'124 MB/s' 2018-01-02 23:20:55.798 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 34% done (5TB 333GB), avg.'132 MB/s', eff.'145 MB/s' 2018-01-02 23:20:56.563 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '13221339' send (pool) [nonce '58144522'] 2018-01-02 23:20:57.016 INFO 696 --- [ readerPool-1] burstcoin.jminer.core.round.Round : dl '28778116' queued 2018-01-02 23:20:58.767 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 45% done (7TB 103GB), avg.'135 MB/s', eff.'145 MB/s' 2018-01-02 23:20:59.620 INFO 696 --- [ readerPool-1] burstcoin.jminer.core.round.Round : dl '22812593' queued 2018-01-02 23:20:59.702 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '6872100' send (pool) [nonce '24796107'] 2018-01-02 23:21:02.124 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 56% done (8TB 881GB), avg.'134 MB/s', eff.'129 MB/s' 2018-01-02 23:21:03.408 INFO 696 --- [TaskExecutor-10] burstcoin.jminer.JMinerCommandLine : dl '13221339' confirmed! [ 153d 0h 35m 39s ] 2018-01-02 23:21:05.425 INFO 696 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 67% done (10TB 655GB), avg.'133 MB/s', eff.'131 MB/s' 2018-01-02 23:21:05.965 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '13495' send (pool) [nonce '70639981'] 2018-01-02 23:21:06.178 INFO 696 --- [TaskExecutor-17] burstcoin.jminer.JMinerCommandLine : dl '13495' confirmed! [ 0d 3h 44m 55s ] 2018-01-02 23:21:08.459 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 78% done (12TB 417GB), avg.'134 MB/s', eff.'141 MB/s' 2018-01-02 23:21:12.173 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 89% done (14TB 193GB), avg.'132 MB/s', eff.'116 MB/s' 2018-01-02 23:21:18.575 INFO 696 --- [cTaskExecutor-5] burstcoin.jminer.JMinerCommandLine : dl '29793020' confirmed! [ 344d 19h 50m 20s ] 2018-01-02 23:21:18.829 INFO 696 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 100% done (15TB 965GB), avg.'118 MB/s', eff.'64 MB/s' 2018-01-02 23:21:25.659 INFO 696 --- [TaskExecutor-13] burstcoin.jminer.JMinerCommandLine : dl '6872100' confirmed! [ 79d 12h 55m 0s ] 2018-01-02 23:21:25.909 INFO 696 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : FINISH block '443307', best deadline '13495', round time '39s 723ms' 2018-01-02 23:28:42.276 WARN 696 --- [askExecutor-245] b.j.c.n.t.NetworkRequestMiningInfoTask : Unable to get mining info from wallet. 2018-01-02 23:32:00.490 WARN 696 --- [askExecutor-344] b.j.c.n.t.NetworkRequestMiningInfoTask : Unable to get mining info from wallet. ^CMAC18179:burstcoin-jminer-0.4.11-SNAPSHOT serena$ vi jminer.properties MAC18179:burstcoin-jminer-0.4.11-SNAPSHOT serena$ ./run.sh 23:33:06.010 [main] INFO burstcoin.jminer.JMinerApplication - Starting the engines ... please wait! WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (jar:file:/Users/serena/Cryptocurrency/burstcoin-jminer-0.4.11-SNAPSHOT/burstcoin-jminer-0.4.11-SNAPSHOT.jar!/BOOT-INF/lib/spring-core-4.3.9.RELEASE.jar!/) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils$1 WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release 2018-01-02 23:33:07.617 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : ------------------------------------------------------- 2018-01-02 23:33:07.620 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : List of system openCL platforms and devices (* = used for mining) 2018-01-02 23:33:07.620 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : 2018-01-02 23:33:07.624 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : * PLATFORM-[0] Apple - (OpenCL 1.2 (Oct 31 2017 18:19:43)) 2018-01-02 23:33:07.897 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : * DEVICE-[0] Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz (8GB) - Intel (OpenCL 1.2 | '1.1') 2018-01-02 23:33:07.899 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : * [0] work group size: '1024', computing units: '8', available 'true' 2018-01-02 23:33:07.900 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : DEVICE-[1] HD Graphics 4000 (1GB) - Intel (OpenCL 1.2 | '1.2(Nov 9 2017 18:56:16)') 2018-01-02 23:33:07.900 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : [1] work group size: '512', computing units: '16', available 'true' 2018-01-02 23:33:07.900 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : DEVICE-[2] GeForce GT 650M (0GB) - NVIDIA (OpenCL 1.2 | '10.28.10 355.11.10.10.20.111') 2018-01-02 23:33:07.900 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : [2] work group size: '1024', computing units: '2', available 'true' 2018-01-02 23:33:07.906 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : 2018-01-02 23:33:07.906 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : (*) openCL context successfully started! (platformId: 0, deviceId: 0) 2018-01-02 23:33:07.907 INFO 712 --- [ main] b.jminer.core.checker.util.OCLChecker : ------------------------------------------------------- 2018-01-02 23:33:08.727 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:33:08.727 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : Burstcoin (BURST) 2018-01-02 23:33:08.727 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : __ __ GPU assisted PoC-Miner 2018-01-02 23:33:08.727 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : |__| _____ |__| ____ ___________ 2018-01-02 23:33:08.728 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : version | |/ \| |/ \_/ __ \_ __ \ 2018-01-02 23:33:08.728 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : 0.4.11 | | Y Y \ | | \ ___/| | \/ 2018-01-02 23:33:08.728 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : /\__| |__|_| /__|___| /\___ >__| 2018-01-02 23:33:08.728 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : \______| \/ \/ \/ 2018-01-02 23:33:08.728 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : mining engine: BURST-LUXE-RED2-G6JW-H4HG5 # (it may happen that miningInfo changes, and changes back later) 2018-01-02 23:33:08.728 INFO 712 --- [ main] burstcoin.jminer.JMinerCommandLine : openCL checker: BURST-QHCJ-9HB5-PTGC-5Q8J9 2018-01-02 23:33:09.144 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:33:09.145 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : START block '443309', scoopNumber '3355', capacity '15965 GB' 2018-01-02 23:33:09.145 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : targetDeadline '34560000', baseTarget '121638', genSig 'e742ab..' 2018-01-02 23:33:09.175 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '18519185612' > '34560000' skipped 2018-01-02 23:33:09.176 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 1% done (0TB 5GB), avg.'34 MB/s' 2018-01-02 23:33:09.192 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '3521684390' > '34560000' skipped 2018-01-02 23:33:09.237 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '450914533' > '34560000' skipped 2018-01-02 23:33:09.491 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '255785035' > '34560000' skipped 2018-01-02 23:33:09.823 INFO 712 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:33:09.823 INFO 712 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : POOL account 'BURST-UTS4-HPFZ-XJHL-B9BB2', assigned miners '227' 2018-01-02 23:33:09.823 INFO 712 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : balance '21 BURST', total mined '507747 BURST' 2018-01-02 23:33:09.882 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '167089264' > '34560000' skipped 2018-01-02 23:33:09.969 INFO 712 --- [cTaskExecutor-3] burstcoin.jminer.JMinerCommandLine : winner block '443308', 'BURST-FXLC-V6DE-4JZS-CL96K' 2018-01-02 23:33:10.353 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '27563719' send (pool) [nonce '71178020'] 2018-01-02 23:33:10.386 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '11839201' send (pool) [nonce '24118850'] 2018-01-02 23:33:12.491 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 12% done (1TB 779GB), avg.'129 MB/s', eff.'130 MB/s' 2018-01-02 23:33:15.718 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 23% done (3TB 549GB), avg.'131 MB/s', eff.'133 MB/s' 2018-01-02 23:33:15.825 INFO 712 --- [cTaskExecutor-5] burstcoin.jminer.JMinerCommandLine : dl '11839201' confirmed! [ 137d 0h 40m 1s ] 2018-01-02 23:33:17.806 INFO 712 --- [cTaskExecutor-4] burstcoin.jminer.JMinerCommandLine : dl '27563719' confirmed! [ 319d 0h 35m 19s ] 2018-01-02 23:33:18.898 INFO 712 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 34% done (5TB 328GB), avg.'133 MB/s', eff.'136 MB/s' 2018-01-02 23:33:21.866 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 45% done (7TB 96GB), avg.'136 MB/s', eff.'145 MB/s' 2018-01-02 23:33:24.870 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 56% done (8TB 874GB), avg.'137 MB/s', eff.'144 MB/s' 2018-01-02 23:33:24.973 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '1906758' send (pool) [nonce '67076184'] 2018-01-02 23:33:25.178 INFO 712 --- [TaskExecutor-14] burstcoin.jminer.JMinerCommandLine : dl '1906758' confirmed! [ 22d 1h 39m 18s ] 2018-01-02 23:33:27.929 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 67% done (10TB 646GB), avg.'138 MB/s', eff.'141 MB/s' 2018-01-02 23:33:31.003 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 78% done (12TB 417GB), avg.'138 MB/s', eff.'140 MB/s' 2018-01-02 23:33:33.197 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '1292537' send (pool) [nonce '29458036'] 2018-01-02 23:33:33.414 INFO 712 --- [TaskExecutor-19] burstcoin.jminer.JMinerCommandLine : dl '1292537' confirmed! [ 14d 23h 2m 17s ] 2018-01-02 23:33:34.929 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 89% done (14TB 193GB), avg.'134 MB/s', eff.'110 MB/s' 2018-01-02 23:33:42.237 INFO 712 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 100% done (15TB 965GB), avg.'117 MB/s', eff.'59 MB/s' 2018-01-02 23:33:42.488 INFO 712 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : FINISH block '443309', best deadline '1292537', round time '33s 111ms' ^CMAC18179:burstcoin-jminer-0.4.11-SNAPSHOT serena$ vi jminer.properties MAC18179:burstcoin-jminer-0.4.11-SNAPSHOT serena$ ./run.sh 23:35:03.139 [main] INFO burstcoin.jminer.JMinerApplication - Starting the engines ... please wait! WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (jar:file:/Users/serena/Cryptocurrency/burstcoin-jminer-0.4.11-SNAPSHOT/burstcoin-jminer-0.4.11-SNAPSHOT.jar!/BOOT-INF/lib/spring-core-4.3.9.RELEASE.jar!/) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils$1 WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release 2018-01-02 23:35:04.783 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : ------------------------------------------------------- 2018-01-02 23:35:04.786 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : List of system openCL platforms and devices (* = used for mining) 2018-01-02 23:35:04.787 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : 2018-01-02 23:35:04.792 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : * PLATFORM-[0] Apple - (OpenCL 1.2 (Oct 31 2017 18:19:43)) 2018-01-02 23:35:04.886 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : * DEVICE-[0] Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz (8GB) - Intel (OpenCL 1.2 | '1.1') 2018-01-02 23:35:04.887 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : * [0] work group size: '1024', computing units: '8', available 'true' 2018-01-02 23:35:04.888 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : DEVICE-[1] HD Graphics 4000 (1GB) - Intel (OpenCL 1.2 | '1.2(Nov 9 2017 18:56:16)') 2018-01-02 23:35:04.888 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : [1] work group size: '512', computing units: '16', available 'true' 2018-01-02 23:35:04.888 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : DEVICE-[2] GeForce GT 650M (0GB) - NVIDIA (OpenCL 1.2 | '10.28.10 355.11.10.10.20.111') 2018-01-02 23:35:04.888 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : [2] work group size: '1024', computing units: '2', available 'true' 2018-01-02 23:35:04.895 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : 2018-01-02 23:35:04.895 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : (*) openCL context successfully started! (platformId: 0, deviceId: 0) 2018-01-02 23:35:04.895 INFO 717 --- [ main] b.jminer.core.checker.util.OCLChecker : ------------------------------------------------------- 2018-01-02 23:35:05.639 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:35:05.639 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : Burstcoin (BURST) 2018-01-02 23:35:05.639 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : __ __ GPU assisted PoC-Miner 2018-01-02 23:35:05.639 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : |__| _____ |__| ____ ___________ 2018-01-02 23:35:05.640 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : version | |/ \| |/ \_/ __ \_ __ \ 2018-01-02 23:35:05.640 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : 0.4.11 | | Y Y \ | | \ ___/| | \/ 2018-01-02 23:35:05.640 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : /\__| |__|_| /__|___| /\___ >__| 2018-01-02 23:35:05.640 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : \______| \/ \/ \/ 2018-01-02 23:35:05.640 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : mining engine: BURST-LUXE-RED2-G6JW-H4HG5 2018-01-02 23:35:05.640 INFO 717 --- [ main] burstcoin.jminer.JMinerCommandLine : openCL checker: BURST-QHCJ-9HB5-PTGC-5Q8J9 2018-01-02 23:35:06.037 INFO 717 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:35:06.038 INFO 717 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : START block '443309', scoopNumber '3355', capacity '15965 GB' 2018-01-02 23:35:06.038 INFO 717 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : targetDeadline '34560000', baseTarget '121638', genSig 'e742ab..' 2018-01-02 23:35:06.083 INFO 717 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 1% done (0TB 12GB), avg.'61 MB/s' 2018-01-02 23:35:06.085 INFO 717 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '177602845' > '34560000' skipped 2018-01-02 23:35:06.194 INFO 717 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '23155025' send (pool) [nonce '18896623'] 2018-01-02 23:35:06.471 INFO 717 --- [cTaskExecutor-4] burstcoin.jminer.JMinerCommandLine : dl '23155025' confirmed! [ 267d 23h 57m 5s ] 2018-01-02 23:35:06.822 INFO 717 --- [cTaskExecutor-3] burstcoin.jminer.JMinerCommandLine : winner block '443308', 'BURST-FXLC-V6DE-4JZS-CL96K' 2018-01-02 23:35:06.890 INFO 717 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : ------------------------------------------------------- 2018-01-02 23:35:06.890 INFO 717 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : POOL account 'BURST-UTS4-HPFZ-XJHL-B9BB2', assigned miners '227' 2018-01-02 23:35:06.890 INFO 717 --- [cTaskExecutor-1] burstcoin.jminer.JMinerCommandLine : balance '21 BURST', total mined '507747 BURST' 2018-01-02 23:35:08.270 INFO 717 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 12% done (1TB 778GB), avg.'193 MB/s', eff.'196 MB/s' 2018-01-02 23:35:09.611 INFO 717 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : dl '1292537' send (pool) [nonce '29458036'] 2018-01-02 23:35:09.822 INFO 717 --- [cTaskExecutor-6] burstcoin.jminer.JMinerCommandLine : dl '1292537' confirmed! [ 14d 23h 2m 17s ] 2018-01-02 23:35:10.698 INFO 717 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 23% done (3TB 553GB), avg.'185 MB/s', eff.'178 MB/s' 2018-01-02 23:35:13.981 INFO 717 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 34% done (5TB 331GB), avg.'163 MB/s', eff.'132 MB/s' 2018-01-02 23:35:16.867 INFO 717 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 45% done (7TB 108GB), avg.'160 MB/s', eff.'150 MB/s' 2018-01-02 23:35:19.281 INFO 717 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 56% done (8TB 873GB), avg.'163 MB/s', eff.'178 MB/s' 2018-01-02 23:35:21.467 INFO 717 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 67% done (10TB 651GB), avg.'168 MB/s', eff.'198 MB/s' 2018-01-02 23:35:24.287 INFO 717 --- [ readerPool-2] burstcoin.jminer.JMinerCommandLine : 78% done (12TB 421GB), avg.'166 MB/s', eff.'153 MB/s' 2018-01-02 23:35:29.060 INFO 717 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 89% done (14TB 193GB), avg.'150 MB/s', eff.'90 MB/s' 2018-01-02 23:35:35.792 INFO 717 --- [ readerPool-1] burstcoin.jminer.JMinerCommandLine : 100% done (15TB 965GB), avg.'130 MB/s', eff.'64 MB/s' 2018-01-02 23:35:36.049 INFO 717 --- [ roundPool-1] burstcoin.jminer.JMinerCommandLine : FINISH block '443309', best deadline '1292537', round time '29s 770ms' 2018-01-02 23:42:40.707 WARN 717 --- [askExecutor-232] b.j.c.n.t.NetworkRequestMiningInfoTask : Unable to get mining info from wallet. 2018-01-02 23:42:40.849 DEBUG 717 --- [askExecutor-232] b.j.c.n.t.NetworkRequestMiningInfoTask : Unable to get mining info from wallet: null java.lang.IllegalArgumentException: null at java.base/java.util.concurrent.ThreadPoolExecutor.setCorePoolSize(ThreadPoolExecutor.java:1587) ~[na:na] at org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor.setCorePoolSize(ThreadPoolTaskExecutor.java:100) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at burstcoin.jminer.core.reader.Reader.read(Reader.java:177) ~[classes!/:0.4.11-SNAPSHOT] at burstcoin.jminer.core.round.Round.handleMessage(Round.java:181) ~[classes!/:0.4.11-SNAPSHOT] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na] at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] at java.base/java.lang.reflect.Method.invoke(Method.java:564) ~[na:na] at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:174) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:137) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:167) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347) ~[spring-context-4.3.9.RELEASE.jar!/:4.3.9.RELEASE] at burstcoin.jminer.core.network.task.NetworkRequestMiningInfoTask.run(NetworkRequestMiningInfoTask.java:110) ~[classes!/:0.4.11-SNAPSHOT] at java.base/java.lang.Thread.run(Thread.java:844) [na:na]
-
@csalvato, Remove the winner line and try it. I sometimes got that when I was GPU mining but the miner always started up on the next block. See my PM to you.
-
-
@csalvato , yes, remove the request for winner. The less you ask for miner info, the less errors the jminer will spit out. Obviously you need to poll the pool for mining info, can't remove that
Not sure what the issue is. you said you tried other pools, with the same result. Sometimes a particular pool can't handle the traffic etc. The stretched timeouts don't seem to help either. It either works or it is deaf, regardless of the timeout.
I used to pool mine on pool.burstpool.net. It was steady.
-
Thank you @rds, but it didn't help. The errors are still there, and it happens with every pool I've tried. I feel like it's a jminer bug.
-
Seems like some other people had this issue here:
https://github.com/de-luxe/burstcoin-jminer/issues/49
Seems like it may be related to having extra, unused parameters in the properties file.