fluent-plugin-claymore 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rubocop.yml +1 -0
- data/.rubocop_todo.yml +20 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +69 -0
- data/LICENSE +0 -0
- data/README.md +127 -0
- data/Rakefile +13 -0
- data/circle.yml +12 -0
- data/example/1516312455_log.txt +1755 -0
- data/example/fluentd.conf +13 -0
- data/fluent-plugin-claymore.gemspec +29 -0
- data/lib/claymore/asset_symbol.rb +11 -0
- data/lib/claymore/gpu_hash_rate.rb +55 -0
- data/lib/claymore/total_hash_rate.rb +37 -0
- data/lib/fluent/plugin/parser_claymore.rb +70 -0
- data/test/claymore/test_gpu_hash_rate.rb +43 -0
- data/test/claymore/test_total_hash_rate.rb +23 -0
- data/test/helper.rb +9 -0
- data/test/plugin/test_parser_claymore.rb +82 -0
- metadata +157 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 38a58756f36c651c898a9ff8efc01cc4fcf6a8e1
|
4
|
+
data.tar.gz: 0e16d15d2d7f700719574b78e2fda441b98d1a73
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 96e6246c9f9036fceceb6e92507ded4aa33856c19b15dd66aa89d23c7e15a3be67f0caa9aeec55a926d09e7e253670beeef6e264678f0b7b415f3cd539234017
|
7
|
+
data.tar.gz: 938c6b78fe80c77b6f13d3f12fb6510a291d60d9fc1dc08f0f908a06aff25886ab07bf505baf6d5c2391cae6a627d6dd09b84e6cf3118b5bf874a3c15263294c
|
data/.rubocop.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2017-12-20 08:13:27 +0000 using RuboCop version 0.50.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 3
|
10
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
11
|
+
# URISchemes: http, https
|
12
|
+
Metrics/LineLength:
|
13
|
+
Max: 200
|
14
|
+
|
15
|
+
# Offense count: 2
|
16
|
+
Style/Documentation:
|
17
|
+
Exclude:
|
18
|
+
- 'spec/**/*'
|
19
|
+
- 'test/**/*'
|
20
|
+
- 'lib/fluent/plugin/parser_claymore.rb'
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
fluent-plugin-claymore (1.0.0)
|
5
|
+
fluentd (>= 0.14.10, < 2)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
ast (2.3.0)
|
11
|
+
cool.io (1.5.3)
|
12
|
+
dig_rb (1.0.1)
|
13
|
+
fluentd (1.0.2)
|
14
|
+
cool.io (>= 1.4.5, < 2.0.0)
|
15
|
+
dig_rb (~> 1.0.0)
|
16
|
+
http_parser.rb (>= 0.5.1, < 0.7.0)
|
17
|
+
msgpack (>= 0.7.0, < 2.0.0)
|
18
|
+
serverengine (>= 2.0.4, < 3.0.0)
|
19
|
+
sigdump (~> 0.2.2)
|
20
|
+
strptime (~> 0.1)
|
21
|
+
tzinfo (~> 1.0)
|
22
|
+
tzinfo-data (~> 1.0)
|
23
|
+
yajl-ruby (~> 1.0)
|
24
|
+
http_parser.rb (0.6.0)
|
25
|
+
msgpack (1.2.0)
|
26
|
+
parallel (1.12.0)
|
27
|
+
parser (2.4.0.0)
|
28
|
+
ast (~> 2.2)
|
29
|
+
power_assert (1.1.1)
|
30
|
+
powerpack (0.1.1)
|
31
|
+
rainbow (2.2.2)
|
32
|
+
rake
|
33
|
+
rake (12.3.0)
|
34
|
+
rubocop (0.50.0)
|
35
|
+
parallel (~> 1.10)
|
36
|
+
parser (>= 2.3.3.1, < 3.0)
|
37
|
+
powerpack (~> 0.1)
|
38
|
+
rainbow (>= 2.2.2, < 3.0)
|
39
|
+
ruby-progressbar (~> 1.7)
|
40
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
+
ruby-progressbar (1.9.0)
|
42
|
+
serverengine (2.0.5)
|
43
|
+
sigdump (~> 0.2.2)
|
44
|
+
sigdump (0.2.4)
|
45
|
+
strptime (0.2.1)
|
46
|
+
test-unit (3.2.7)
|
47
|
+
power_assert
|
48
|
+
thread_safe (0.3.6)
|
49
|
+
timecop (0.9.1)
|
50
|
+
tzinfo (1.2.4)
|
51
|
+
thread_safe (~> 0.1)
|
52
|
+
tzinfo-data (1.2017.3)
|
53
|
+
tzinfo (>= 1.0.0)
|
54
|
+
unicode-display_width (1.3.0)
|
55
|
+
yajl-ruby (1.3.1)
|
56
|
+
|
57
|
+
PLATFORMS
|
58
|
+
ruby
|
59
|
+
|
60
|
+
DEPENDENCIES
|
61
|
+
bundler (~> 1.14)
|
62
|
+
fluent-plugin-claymore!
|
63
|
+
rake (~> 12.0)
|
64
|
+
rubocop (~> 0.50.0)
|
65
|
+
test-unit (~> 3.0)
|
66
|
+
timecop (~> 0.9)
|
67
|
+
|
68
|
+
BUNDLED WITH
|
69
|
+
1.14.6
|
data/LICENSE
ADDED
File without changes
|
data/README.md
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
# fluent-plugin-claymore [![CircleCI](https://circleci.com/gh/timstott/fluent-plugin-claymore/tree/master.svg?style=svg)](https://circleci.com/gh/timstott/fluent-plugin-claymore/tree/master)
|
2
|
+
|
3
|
+
[Fluentd](https://fluentd.org/) parser plugin to extract metrics from Claymore
|
4
|
+
Dual Miner logs
|
5
|
+
|
6
|
+
## Requirements
|
7
|
+
|
8
|
+
| fluentd | ruby |
|
9
|
+
|------------|--------|
|
10
|
+
| >= v0.14.0 | >= 2.1 |
|
11
|
+
|
12
|
+
| Claymore Dual Miner | fluent-plugin-claymore |
|
13
|
+
|---------------------|------------------------|
|
14
|
+
| v10.0 | >= v1.0 |
|
15
|
+
|
16
|
+
## Installation
|
17
|
+
|
18
|
+
$ fluent-gem install fluent-plugin-claymore
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
Use with any input plugins that have `parse` directive:
|
23
|
+
|
24
|
+
```
|
25
|
+
# fluentd.conf
|
26
|
+
<source>
|
27
|
+
@type tail
|
28
|
+
path *.txt
|
29
|
+
read_from_head true
|
30
|
+
tag claymore.data
|
31
|
+
<parse>
|
32
|
+
@type claymore
|
33
|
+
# zero configuration 🎉
|
34
|
+
</parse>
|
35
|
+
</source>
|
36
|
+
|
37
|
+
<match **>
|
38
|
+
@type stdout
|
39
|
+
</match>
|
40
|
+
```
|
41
|
+
|
42
|
+
Demo configuration and sample data are available in [example](./example).
|
43
|
+
```console
|
44
|
+
cd example
|
45
|
+
fluentd -c fluentd.conf
|
46
|
+
```
|
47
|
+
|
48
|
+
A production configuration which uses InfluxDB to store time series may look like:
|
49
|
+
|
50
|
+
```
|
51
|
+
<source>
|
52
|
+
@type tail
|
53
|
+
path path/to/claymore/*_log.txt
|
54
|
+
pos_file path/to/pos.pos
|
55
|
+
refresh_interval 5
|
56
|
+
tag claymore.data
|
57
|
+
<parse>
|
58
|
+
@type claymore
|
59
|
+
</parse>
|
60
|
+
</source>
|
61
|
+
|
62
|
+
# re-tag events to use tag names as InfluxDB measurements
|
63
|
+
<match claymore.data>
|
64
|
+
@type rewrite_tag_filter
|
65
|
+
<rule>
|
66
|
+
key type
|
67
|
+
pattern GPU_HASH_RATE
|
68
|
+
tag claymore.data.hash_rate
|
69
|
+
</rule>
|
70
|
+
<rule>
|
71
|
+
key type
|
72
|
+
pattern GPU_SHARE_FOUND
|
73
|
+
tag claymore.data.share_found
|
74
|
+
</rule>
|
75
|
+
<rule>
|
76
|
+
key type
|
77
|
+
pattern GPU_TEMP
|
78
|
+
tag claymore.data.temperature
|
79
|
+
</rule>
|
80
|
+
</match>
|
81
|
+
|
82
|
+
<match claymore.data.*>
|
83
|
+
@type copy
|
84
|
+
|
85
|
+
<store>
|
86
|
+
@type stdout
|
87
|
+
</store>
|
88
|
+
<store>
|
89
|
+
@type influxdb
|
90
|
+
host influxdb
|
91
|
+
port 8086
|
92
|
+
dbname claymore
|
93
|
+
# uses fluentd tag when measurement not specified
|
94
|
+
# measurement xxx
|
95
|
+
time_precision ms
|
96
|
+
auto_tags false
|
97
|
+
tag_keys ["asset", "gpu", "hostname", "type"]
|
98
|
+
sequence_tag _seq
|
99
|
+
<buffer>
|
100
|
+
flush_interval 1
|
101
|
+
</buffer>
|
102
|
+
</store>
|
103
|
+
</match>
|
104
|
+
```
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
## Events/Metrics
|
109
|
+
|
110
|
+
```json
|
111
|
+
[
|
112
|
+
{ "type": "GPU_HASH_RATE", "asset": "SC", "gpu": 1, "hash_rate": 300.583 },
|
113
|
+
{ "type": "GPU_SHARE_FOUND", "asset": "SC", "gpu": 1, "count": 1 },
|
114
|
+
{ "type": "TOTAL_HASH_RATE", "asset": "ETH", "hash_rate": 83.153 },
|
115
|
+
{ "type": "GPU_TEMP", "gpu": 1, "temperature": 47, "old_fan": 0, "new_fan": 75 },
|
116
|
+
{ "type": "CONNECTION_LOST", "asset": "SC", "count": 1 }
|
117
|
+
]
|
118
|
+
```
|
119
|
+
|
120
|
+
## Caveats
|
121
|
+
|
122
|
+
- The parser plugin only works with `input` plugins, not
|
123
|
+
`filter` plugins. This is because `filter` plugins are unable to yield
|
124
|
+
multiple results unlike `input`.
|
125
|
+
|
126
|
+
- The claymore logs timestamps is ignored since it excludes the date. Instead
|
127
|
+
the timestamp when the line is read is used.
|
data/Rakefile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'bundler'
|
2
|
+
Bundler::GemHelper.install_tasks
|
3
|
+
|
4
|
+
require 'rake/testtask'
|
5
|
+
|
6
|
+
Rake::TestTask.new(:test) do |t|
|
7
|
+
t.libs.push('lib', 'test')
|
8
|
+
t.test_files = FileList['test/**/test_*.rb']
|
9
|
+
t.verbose = true
|
10
|
+
t.warning = true
|
11
|
+
end
|
12
|
+
|
13
|
+
task default: [:test]
|
data/circle.yml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
test:
|
2
|
+
post:
|
3
|
+
- bundle exec rubocop
|
4
|
+
|
5
|
+
deployment:
|
6
|
+
rubygems:
|
7
|
+
tag: /^v\d.+/
|
8
|
+
commands:
|
9
|
+
- "gem build $CIRCLE_PROJECT_REPONAME.gemspec"
|
10
|
+
- 'echo :rubygems_api_key: ${RUBYGEMS_API_KEY} > ~/.gem/credentials'
|
11
|
+
- "chmod 0600 ~/.gem/credentials"
|
12
|
+
- "gem push $CIRCLE_PROJECT_REPONAME-$(echo $CIRCLE_TAG | sed -e 's/v//').gem"
|
@@ -0,0 +1,1755 @@
|
|
1
|
+
03:54:15:833 2590
|
2
|
+
03:54:15:849 2590 ����������������������������������������������������������������ͻ
|
3
|
+
03:54:15:849 2590 � Claymore's Dual ETH + DCR/SC/LBC/PASC GPU Miner v10.0 �
|
4
|
+
03:54:15:849 2590 ����������������������������������������������������������������ͼ
|
5
|
+
03:54:15:849 2590
|
6
|
+
03:54:16:083 2590 ETH: 5 pools are specified
|
7
|
+
03:54:16:099 2590 Main Ethereum pool is eth-eu2.nanopool.org:9999
|
8
|
+
03:54:16:099 2590 SC: 5 pools are specified
|
9
|
+
03:54:16:099 2590 Main Siacoin pool is sia-eu2.nanopool.org:7777
|
10
|
+
03:54:17:397 2590 OpenCL platform: Intel(R) OpenCL
|
11
|
+
03:54:17:412 2590 OpenCL platform: AMD Accelerated Parallel Processing
|
12
|
+
03:54:17:412 2590 OpenCL initializing...
|
13
|
+
|
14
|
+
03:54:17:412 2590 AMD Cards available: 3
|
15
|
+
03:54:17:428 2590 GPU #0: Ellesmere, 8192 MB available, 32 compute units
|
16
|
+
03:54:17:428 2590 GPU #0 recognized as Radeon RX 470/570
|
17
|
+
03:54:17:428 2590 GPU #1: Ellesmere, 8192 MB available, 32 compute units
|
18
|
+
03:54:17:444 2590 GPU #1 recognized as Radeon RX 470/570
|
19
|
+
03:54:17:444 2590 GPU #2: Ellesmere, 8192 MB available, 32 compute units
|
20
|
+
03:54:17:444 2590 GPU #2 recognized as Radeon RX 470/570
|
21
|
+
03:54:17:459 2590 POOL/SOLO version
|
22
|
+
03:54:17:459 2590 b415
|
23
|
+
03:54:17:475 2590 Platform: Windows
|
24
|
+
03:54:17:522 2590 start building OpenCL program for GPU 0...
|
25
|
+
03:54:17:912 2590 done
|
26
|
+
03:54:18:147 2590 start building OpenCL program for GPU 1...
|
27
|
+
03:54:18:553 2590 done
|
28
|
+
03:54:18:772 2590 start building OpenCL program for GPU 2...
|
29
|
+
03:54:19:147 2590 done
|
30
|
+
03:54:19:397 2590 GPU #0: algorithm ASM
|
31
|
+
03:54:19:444 2590 GPU #1: algorithm ASM
|
32
|
+
03:54:19:491 2590 GPU #2: algorithm ASM
|
33
|
+
03:54:19:491 2590 cudaGetDeviceCount failed (35, CUDA driver version is insufficient for CUDA runtime version), probably no CUDA devices
|
34
|
+
03:54:19:491 2590 No NVIDIA CUDA GPUs detected.
|
35
|
+
03:54:19:506 2590 Total cards: 3
|
36
|
+
03:54:21:163 2590 No NVIDIA cards in the list, NVML library will not be used.
|
37
|
+
03:54:21:209 22fc ETH: Stratum - connecting to 'eth-eu2.nanopool.org' <5.196.26.96> port 9999
|
38
|
+
03:54:21:303 2590 DUAL MINING MODE ENABLED: ETHEREUM+SIACOIN
|
39
|
+
03:54:21:303 2590 ETH: eth-proxy stratum mode
|
40
|
+
03:54:21:303 2590 Watchdog enabled
|
41
|
+
03:54:21:319 2590 Remote management (READ-ONLY MODE) is enabled on port 3333
|
42
|
+
03:54:21:319 2590
|
43
|
+
|
44
|
+
03:54:21:350 22fc ETH: Stratum - Connected (eth-eu2.nanopool.org:9999)
|
45
|
+
03:54:21:366 1758 SC: Stratum - connecting to 'sia-eu2.nanopool.org' <51.255.34.80> port 7777
|
46
|
+
03:54:21:475 22fc got 282 bytes
|
47
|
+
03:54:21:475 22fc buf: {"jsonrpc":"2.0","id":2,"result":true}
|
48
|
+
{"jsonrpc":"2.0","id":0,"result":["0x1811a09013d20d5b731cf8131687542fc255ec40b5c04c8575be9ee031d9ffc2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
49
|
+
|
50
|
+
03:54:21:475 22fc parse packet: 38
|
51
|
+
03:54:21:475 22fc ETH: Authorized
|
52
|
+
03:54:21:491 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
53
|
+
|
54
|
+
03:54:21:491 22fc remove first packet 243
|
55
|
+
03:54:21:491 1758 send: {"id": 1, "method": "mining.subscribe", "params": []}
|
56
|
+
|
57
|
+
03:54:21:491 22fc new buf size: 243
|
58
|
+
03:54:21:506 1758 send: {"id": 5, "method": "mining.extranonce.subscribe", "params": []}
|
59
|
+
|
60
|
+
03:54:21:506 22fc parse packet: 242
|
61
|
+
|
62
|
+
03:54:21:522 22fc ETH: job changed
|
63
|
+
03:54:21:538 1758 SC: Stratum - Connected (sia-eu2.nanopool.org:7777)
|
64
|
+
03:54:21:538 22fc new buf size: 0
|
65
|
+
03:54:21:553 249c Setting DAG epoch #164...
|
66
|
+
03:54:21:616 22fc got 243 bytes
|
67
|
+
03:54:21:616 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x1811a09013d20d5b731cf8131687542fc255ec40b5c04c8575be9ee031d9ffc2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
68
|
+
|
69
|
+
03:54:21:616 22fc parse packet: 242
|
70
|
+
03:54:21:631 22fc ETH: job is the same
|
71
|
+
03:54:21:631 22fc new buf size: 0
|
72
|
+
03:54:21:647 1758 got 338 bytes
|
73
|
+
03:54:21:647 1758 buf: {"jsonrpc":"2.0","id":1,"result":true}
|
74
|
+
{"id":6,"jsonrpc":"2.0","params":["0","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000005517615a00000000241ff7fd417c6cd80d57465752c72132b9215e5b05dabfc1601e23f30569320a","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
75
|
+
|
76
|
+
03:54:21:647 1758 parse packet: 38
|
77
|
+
03:54:21:663 1758 remove first packet 299
|
78
|
+
03:54:21:663 1758 new buf size: 299
|
79
|
+
03:54:21:663 1758 parse packet: 298
|
80
|
+
03:54:21:678 1758 sc: job changed
|
81
|
+
03:54:21:678 1758 new buf size: 0
|
82
|
+
03:54:21:756 1758 got 39 bytes
|
83
|
+
03:54:21:756 1758 buf: {"jsonrpc":"2.0","id":2,"result":true}
|
84
|
+
|
85
|
+
03:54:21:772 1758 parse packet: 38
|
86
|
+
03:54:21:772 1758 SC: Authorized
|
87
|
+
03:54:21:772 1758 new buf size: 0
|
88
|
+
03:54:21:803 1758 got 299 bytes
|
89
|
+
03:54:21:803 1758 buf: {"id":6,"jsonrpc":"2.0","params":["1","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000005517615a000000005730dbbaa26ba742b19541069d092dcdde5cbb8aa89667574df446d352c11a21","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
90
|
+
|
91
|
+
03:54:21:803 1758 parse packet: 298
|
92
|
+
03:54:21:819 1758 sc: job changed(2)
|
93
|
+
03:54:21:819 1758 new buf size: 0
|
94
|
+
03:54:21:819 1758 SC: 01/19/18-03:54:21 - New job from sia-eu2.nanopool.org:7777
|
95
|
+
03:54:21:834 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
96
|
+
03:54:22:850 1ba0 OC v7, Reset control for GPU 0, close miner right now if you want to use default control from Catalyst
|
97
|
+
03:54:23:022 1ba0 OC v7, Reset control for GPU 1, close miner right now if you want to use default control from Catalyst
|
98
|
+
03:54:23:178 1ba0 OC v7, Reset control for GPU 2, close miner right now if you want to use default control from Catalyst
|
99
|
+
03:54:24:741 249c Setting DAG epoch #164 for GPU2
|
100
|
+
03:54:24:741 249c Create GPU buffer for GPU2
|
101
|
+
03:54:24:850 1158 Setting DAG epoch #164 for GPU1
|
102
|
+
03:54:24:866 1158 Create GPU buffer for GPU1
|
103
|
+
03:54:24:975 2534 Setting DAG epoch #164 for GPU0
|
104
|
+
03:54:24:975 2534 Create GPU buffer for GPU0
|
105
|
+
03:54:26:616 1ba0 OC v7, Reset control for GPU 0, close miner right now if you want to use default control from Catalyst
|
106
|
+
03:54:26:616 1ba0 OC v7, Reset control for GPU 1, close miner right now if you want to use default control from Catalyst
|
107
|
+
03:54:26:772 1ba0 OC v7, Reset control for GPU 2, close miner right now if you want to use default control from Catalyst
|
108
|
+
03:54:29:694 249c GPU2 DAG creation time - 4832 ms
|
109
|
+
03:54:29:694 249c Setting DAG epoch #164 for GPU2 done
|
110
|
+
03:54:29:913 2534 GPU0 DAG creation time - 4819 ms
|
111
|
+
03:54:29:929 2534 Setting DAG epoch #164 for GPU0 done
|
112
|
+
03:54:30:210 1ba0 GPU 0 temp = 49, old fan speed = 0, new fan speed = 80
|
113
|
+
03:54:30:225 1ba0 GPU 1 temp = 52, old fan speed = 30, new fan speed = 81
|
114
|
+
03:54:30:397 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 79
|
115
|
+
03:54:30:929 1158 GPU1 DAG creation time - 5962 ms
|
116
|
+
03:54:30:944 1158 Setting DAG epoch #164 for GPU1 done
|
117
|
+
03:54:31:554 22fc ETH: checking pool connection...
|
118
|
+
03:54:31:554 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
119
|
+
|
120
|
+
03:54:31:679 22fc got 243 bytes
|
121
|
+
03:54:31:679 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x1811a09013d20d5b731cf8131687542fc255ec40b5c04c8575be9ee031d9ffc2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
122
|
+
|
123
|
+
03:54:31:679 22fc parse packet: 242
|
124
|
+
03:54:31:679 22fc ETH: job is the same
|
125
|
+
03:54:31:694 22fc new buf size: 0
|
126
|
+
03:54:31:913 1758 got 299 bytes
|
127
|
+
03:54:31:913 1758 buf: {"id":6,"jsonrpc":"2.0","params":["2","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000009117615a000000004d6c982a5621e60f4b384c4208859db0bcb37b0719c89cab210ed1dde02df217","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
128
|
+
|
129
|
+
03:54:31:913 1758 parse packet: 298
|
130
|
+
03:54:31:913 1758 sc: job changed(2)
|
131
|
+
03:54:31:929 1758 new buf size: 0
|
132
|
+
03:54:31:929 1758 SC: 01/19/18-03:54:31 - New job from sia-eu2.nanopool.org:7777
|
133
|
+
03:54:31:929 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
134
|
+
03:54:33:694 1ba0 GPU 0 temp = 50, old fan speed = 85, new fan speed = 75
|
135
|
+
03:54:33:741 1ba0 GPU 1 temp = 52, old fan speed = 92, new fan speed = 75
|
136
|
+
03:54:33:757 1ba0 GPU 2 temp = 49, old fan speed = 0, new fan speed = 75
|
137
|
+
03:54:37:085 1ba0 GPU 0 temp = 50, old fan speed = 83, new fan speed = 75
|
138
|
+
03:54:37:116 1ba0 GPU 1 temp = 51, old fan speed = 87, new fan speed = 75
|
139
|
+
03:54:37:132 1ba0 GPU 2 temp = 49, old fan speed = 87, new fan speed = 75
|
140
|
+
03:54:40:445 1ba0 GPU 0 temp = 50, old fan speed = 83, new fan speed = 75
|
141
|
+
03:54:40:476 1ba0 GPU 1 temp = 50, old fan speed = 87, new fan speed = 75
|
142
|
+
03:54:40:491 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
143
|
+
03:54:41:554 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f578ee", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
144
|
+
|
145
|
+
03:54:41:570 22fc ETH: checking pool connection...
|
146
|
+
03:54:41:570 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
147
|
+
|
148
|
+
03:54:41:820 22fc got 243 bytes
|
149
|
+
03:54:41:820 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x1811a09013d20d5b731cf8131687542fc255ec40b5c04c8575be9ee031d9ffc2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
150
|
+
|
151
|
+
03:54:41:820 22fc parse packet: 242
|
152
|
+
03:54:41:820 22fc ETH: job is the same
|
153
|
+
03:54:41:835 22fc new buf size: 0
|
154
|
+
03:54:43:804 1ba0 GPU 0 temp = 50, old fan speed = 83, new fan speed = 75
|
155
|
+
03:54:43:835 1ba0 GPU 1 temp = 50, old fan speed = 87, new fan speed = 75
|
156
|
+
03:54:43:851 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
157
|
+
03:54:47:164 1ba0 GPU 0 temp = 49, old fan speed = 83, new fan speed = 75
|
158
|
+
03:54:47:195 1ba0 GPU 1 temp = 49, old fan speed = 87, new fan speed = 75
|
159
|
+
03:54:47:211 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
160
|
+
03:54:50:508 1ba0 GPU 0 temp = 49, old fan speed = 83, new fan speed = 75
|
161
|
+
03:54:50:539 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
162
|
+
03:54:50:570 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
163
|
+
03:54:50:601 1ba0 GPU0 t=49C fan=83%, GPU1 t=48C fan=87%, GPU2 t=46C fan=87%
|
164
|
+
03:54:50:601 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 62,
|
165
|
+
03:54:50:601 1ba0 watchdog - thread 0 (gpu0), hb time 62
|
166
|
+
03:54:50:617 1ba0 watchdog - thread 1 (gpu0), hb time 0
|
167
|
+
03:54:50:617 1ba0 watchdog - thread 2 (gpu1), hb time 78
|
168
|
+
03:54:50:617 1ba0 watchdog - thread 3 (gpu1), hb time 156
|
169
|
+
03:54:50:617 1ba0 watchdog - thread 4 (gpu2), hb time 16
|
170
|
+
03:54:50:633 1ba0 watchdog - thread 5 (gpu2), hb time 93
|
171
|
+
03:54:51:586 22fc ETH: checking pool connection...
|
172
|
+
03:54:51:586 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
173
|
+
|
174
|
+
03:54:51:711 22fc got 243 bytes
|
175
|
+
03:54:51:711 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x1811a09013d20d5b731cf8131687542fc255ec40b5c04c8575be9ee031d9ffc2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
176
|
+
|
177
|
+
03:54:51:711 22fc parse packet: 242
|
178
|
+
03:54:51:711 22fc ETH: job is the same
|
179
|
+
03:54:51:726 22fc new buf size: 0
|
180
|
+
03:54:53:930 1ba0 GPU 0 temp = 49, old fan speed = 83, new fan speed = 75
|
181
|
+
03:54:53:976 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
182
|
+
03:54:53:992 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
183
|
+
03:54:57:211 22fc got 243 bytes
|
184
|
+
03:54:57:211 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xf7cd4d880dc4250ce1eff46a55b1c4c3f5382cd7f45f01f664679cc47e73a789","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
185
|
+
|
186
|
+
03:54:57:211 22fc parse packet: 242
|
187
|
+
03:54:57:211 22fc ETH: job changed
|
188
|
+
03:54:57:227 22fc new buf size: 0
|
189
|
+
03:54:57:227 22fc ETH: 01/19/18-03:54:57 - New job from eth-eu2.nanopool.org:9999
|
190
|
+
03:54:57:227 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
191
|
+
03:54:57:242 22fc ETH - Total Speed: 83.068 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:00
|
192
|
+
03:54:57:242 22fc ETH: GPU0 29.969 Mh/s, GPU1 23.142 Mh/s, GPU2 29.957 Mh/s
|
193
|
+
03:54:57:242 22fc SC - Total Speed: 1079.883 Mh/s, Total Shares: 0, Rejected: 0
|
194
|
+
03:54:57:258 22fc SC: GPU0 389.592 Mh/s, GPU1 300.847 Mh/s, GPU2 389.444 Mh/s
|
195
|
+
03:54:57:305 1ba0 GPU 0 temp = 49, old fan speed = 83, new fan speed = 75
|
196
|
+
03:54:57:336 1ba0 GPU 1 temp = 47, old fan speed = 87, new fan speed = 75
|
197
|
+
03:54:57:352 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
198
|
+
03:55:00:664 1ba0 GPU 0 temp = 49, old fan speed = 83, new fan speed = 75
|
199
|
+
03:55:00:695 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
200
|
+
03:55:00:711 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
201
|
+
03:55:01:570 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f51b0f", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
202
|
+
|
203
|
+
03:55:01:602 22fc ETH: checking pool connection...
|
204
|
+
03:55:01:602 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
205
|
+
|
206
|
+
03:55:01:836 22fc got 243 bytes
|
207
|
+
03:55:01:836 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xf7cd4d880dc4250ce1eff46a55b1c4c3f5382cd7f45f01f664679cc47e73a789","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
208
|
+
|
209
|
+
03:55:01:836 22fc parse packet: 242
|
210
|
+
03:55:01:836 22fc ETH: job is the same
|
211
|
+
03:55:01:852 22fc new buf size: 0
|
212
|
+
03:55:04:024 1ba0 GPU 0 temp = 49, old fan speed = 83, new fan speed = 75
|
213
|
+
03:55:04:071 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
214
|
+
03:55:04:086 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
215
|
+
03:55:07:399 1ba0 GPU 0 temp = 49, old fan speed = 83, new fan speed = 75
|
216
|
+
03:55:07:414 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
217
|
+
03:55:07:430 1ba0 GPU 2 temp = 44, old fan speed = 87, new fan speed = 75
|
218
|
+
03:55:10:743 1ba0 GPU 0 temp = 49, old fan speed = 82, new fan speed = 75
|
219
|
+
03:55:10:774 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
220
|
+
03:55:10:946 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
221
|
+
03:55:11:618 22fc ETH: checking pool connection...
|
222
|
+
03:55:11:618 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
223
|
+
|
224
|
+
03:55:11:743 22fc got 243 bytes
|
225
|
+
03:55:11:743 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xf7cd4d880dc4250ce1eff46a55b1c4c3f5382cd7f45f01f664679cc47e73a789","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
226
|
+
|
227
|
+
03:55:11:743 22fc parse packet: 242
|
228
|
+
03:55:11:743 22fc ETH: job is the same
|
229
|
+
03:55:11:758 22fc new buf size: 0
|
230
|
+
03:55:14:259 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
231
|
+
03:55:14:290 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
232
|
+
03:55:14:477 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
233
|
+
03:55:17:790 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
234
|
+
03:55:17:821 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
235
|
+
03:55:17:993 1ba0 GPU 2 temp = 47, old fan speed = 0, new fan speed = 75
|
236
|
+
03:55:21:290 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
237
|
+
03:55:21:337 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
238
|
+
03:55:21:509 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
239
|
+
03:55:21:587 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f0b7fc", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
240
|
+
|
241
|
+
03:55:21:634 22fc ETH: checking pool connection...
|
242
|
+
03:55:21:634 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
243
|
+
|
244
|
+
03:55:21:853 22fc got 243 bytes
|
245
|
+
03:55:21:853 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xf7cd4d880dc4250ce1eff46a55b1c4c3f5382cd7f45f01f664679cc47e73a789","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
246
|
+
|
247
|
+
03:55:21:853 22fc parse packet: 242
|
248
|
+
03:55:21:853 22fc ETH: job is the same
|
249
|
+
03:55:21:868 22fc new buf size: 0
|
250
|
+
03:55:23:212 22fc got 243 bytes
|
251
|
+
03:55:23:212 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x902e9d75171cb09e95ec2c489d878e164644c7789bcaf347c337de898dacf74c","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
252
|
+
|
253
|
+
03:55:23:212 22fc parse packet: 242
|
254
|
+
03:55:23:212 22fc ETH: job changed
|
255
|
+
03:55:23:228 22fc new buf size: 0
|
256
|
+
03:55:23:228 22fc ETH: 01/19/18-03:55:23 - New job from eth-eu2.nanopool.org:9999
|
257
|
+
03:55:23:228 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
258
|
+
03:55:23:243 22fc ETH - Total Speed: 82.996 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:01
|
259
|
+
03:55:23:243 22fc ETH: GPU0 29.986 Mh/s, GPU1 23.004 Mh/s, GPU2 30.007 Mh/s
|
260
|
+
03:55:23:243 22fc SC - Total Speed: 1078.953 Mh/s, Total Shares: 0, Rejected: 0
|
261
|
+
03:55:23:259 22fc SC: GPU0 389.817 Mh/s, GPU1 299.049 Mh/s, GPU2 390.087 Mh/s
|
262
|
+
03:55:24:821 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
263
|
+
03:55:24:853 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
264
|
+
03:55:24:868 1ba0 GPU 2 temp = 49, old fan speed = 85, new fan speed = 75
|
265
|
+
03:55:24:915 1ba0 GPU0 t=48C fan=83%, GPU1 t=45C fan=86%, GPU2 t=49C fan=85%
|
266
|
+
03:55:24:915 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 32,
|
267
|
+
03:55:24:915 1ba0 watchdog - thread 0 (gpu0), hb time 63
|
268
|
+
03:55:24:931 1ba0 watchdog - thread 1 (gpu0), hb time 15
|
269
|
+
03:55:24:931 1ba0 watchdog - thread 2 (gpu1), hb time 47
|
270
|
+
03:55:24:931 1ba0 watchdog - thread 3 (gpu1), hb time 140
|
271
|
+
03:55:24:931 1ba0 watchdog - thread 4 (gpu2), hb time 31
|
272
|
+
03:55:24:946 1ba0 watchdog - thread 5 (gpu2), hb time 109
|
273
|
+
03:55:28:228 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
274
|
+
03:55:28:259 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
275
|
+
03:55:28:275 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
276
|
+
03:55:29:681 1758 got 299 bytes
|
277
|
+
03:55:29:681 1758 buf: {"id":6,"jsonrpc":"2.0","params":["3","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a50000000000000000cd17615a0000000057364681e5934396218ae5d7595d6fd9d76e4169cd502208d7c5fde8e13f3a5f","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
278
|
+
|
279
|
+
03:55:29:681 1758 parse packet: 298
|
280
|
+
03:55:29:681 1758 sc: job changed(2)
|
281
|
+
03:55:29:697 1758 new buf size: 0
|
282
|
+
03:55:29:697 1758 SC: 01/19/18-03:55:29 - New job from sia-eu2.nanopool.org:7777
|
283
|
+
03:55:29:697 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
284
|
+
03:55:31:525 22fc got 243 bytes
|
285
|
+
03:55:31:525 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xc60710d6749f611eddb2d78bf84571f63d3ce2f5e2f2d923b52bf778abf308eb","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
286
|
+
|
287
|
+
03:55:31:525 22fc parse packet: 242
|
288
|
+
03:55:31:525 22fc ETH: job changed
|
289
|
+
03:55:31:540 22fc new buf size: 0
|
290
|
+
03:55:31:540 22fc ETH: 01/19/18-03:55:31 - New job from eth-eu2.nanopool.org:9999
|
291
|
+
03:55:31:540 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
292
|
+
03:55:31:556 22fc ETH - Total Speed: 82.977 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:01
|
293
|
+
03:55:31:556 22fc ETH: GPU0 30.016 Mh/s, GPU1 23.133 Mh/s, GPU2 29.828 Mh/s
|
294
|
+
03:55:31:556 22fc SC - Total Speed: 1078.698 Mh/s, Total Shares: 0, Rejected: 0
|
295
|
+
03:55:31:572 22fc SC: GPU0 390.202 Mh/s, GPU1 300.733 Mh/s, GPU2 387.763 Mh/s
|
296
|
+
03:55:31:572 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
297
|
+
03:55:31:603 1ba0 GPU 1 temp = 44, old fan speed = 86, new fan speed = 75
|
298
|
+
03:55:31:619 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
299
|
+
03:55:31:650 22fc ETH: checking pool connection...
|
300
|
+
03:55:31:650 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
301
|
+
|
302
|
+
03:55:31:775 22fc got 243 bytes
|
303
|
+
03:55:31:775 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xc60710d6749f611eddb2d78bf84571f63d3ce2f5e2f2d923b52bf778abf308eb","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
304
|
+
|
305
|
+
03:55:31:775 22fc parse packet: 242
|
306
|
+
03:55:31:775 22fc ETH: job is the same
|
307
|
+
03:55:31:791 22fc new buf size: 0
|
308
|
+
03:55:34:931 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
309
|
+
03:55:35:150 1ba0 GPU 1 temp = 44, old fan speed = 0, new fan speed = 75
|
310
|
+
03:55:35:166 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
311
|
+
03:55:38:463 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
312
|
+
03:55:38:650 1ba0 GPU 1 temp = 46, old fan speed = 0, new fan speed = 75
|
313
|
+
03:55:38:666 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
314
|
+
03:55:40:306 22fc got 243 bytes
|
315
|
+
03:55:40:306 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xe8f5b7b4550c78819fe6db8430320d63795fbd95fbeb512a037f29515cd33463","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
316
|
+
|
317
|
+
03:55:40:306 22fc parse packet: 242
|
318
|
+
03:55:40:306 22fc ETH: job changed
|
319
|
+
03:55:40:322 22fc new buf size: 0
|
320
|
+
03:55:40:322 22fc ETH: 01/19/18-03:55:40 - New job from eth-eu2.nanopool.org:9999
|
321
|
+
03:55:40:322 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
322
|
+
03:55:40:338 22fc ETH - Total Speed: 83.172 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:01
|
323
|
+
03:55:40:338 22fc ETH: GPU0 30.026 Mh/s, GPU1 23.124 Mh/s, GPU2 30.022 Mh/s
|
324
|
+
03:55:40:338 22fc SC - Total Speed: 1081.230 Mh/s, Total Shares: 0, Rejected: 0
|
325
|
+
03:55:40:353 22fc SC: GPU0 390.340 Mh/s, GPU1 300.605 Mh/s, GPU2 390.285 Mh/s
|
326
|
+
03:55:41:603 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f5394f", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
327
|
+
|
328
|
+
03:55:41:666 22fc ETH: checking pool connection...
|
329
|
+
03:55:41:666 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
330
|
+
|
331
|
+
03:55:41:869 22fc got 243 bytes
|
332
|
+
03:55:41:869 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xe8f5b7b4550c78819fe6db8430320d63795fbd95fbeb512a037f29515cd33463","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
333
|
+
|
334
|
+
03:55:41:869 22fc parse packet: 242
|
335
|
+
03:55:41:869 22fc ETH: job is the same
|
336
|
+
03:55:41:885 22fc new buf size: 0
|
337
|
+
03:55:41:963 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
338
|
+
03:55:42:150 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
339
|
+
03:55:42:166 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
340
|
+
03:55:45:479 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
341
|
+
03:55:45:666 1ba0 GPU 1 temp = 49, old fan speed = 0, new fan speed = 75
|
342
|
+
03:55:45:682 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
343
|
+
03:55:46:229 22fc got 243 bytes
|
344
|
+
03:55:46:229 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x53037c15fb1cb7d4765ff7d91362a827da8231b3ea3f06921489ea866734e52c","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
345
|
+
|
346
|
+
03:55:46:229 22fc parse packet: 242
|
347
|
+
03:55:46:229 22fc ETH: job changed
|
348
|
+
03:55:46:244 22fc new buf size: 0
|
349
|
+
03:55:46:244 22fc ETH: 01/19/18-03:55:46 - New job from eth-eu2.nanopool.org:9999
|
350
|
+
03:55:46:244 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
351
|
+
03:55:46:260 22fc ETH - Total Speed: 83.108 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:01
|
352
|
+
03:55:46:260 22fc ETH: GPU0 30.045 Mh/s, GPU1 23.105 Mh/s, GPU2 29.957 Mh/s
|
353
|
+
03:55:46:260 22fc SC - Total Speed: 1080.397 Mh/s, Total Shares: 0, Rejected: 0
|
354
|
+
03:55:46:275 22fc SC: GPU0 390.583 Mh/s, GPU1 300.370 Mh/s, GPU2 389.444 Mh/s
|
355
|
+
03:55:48:979 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
356
|
+
03:55:49:010 1ba0 GPU 1 temp = 49, old fan speed = 86, new fan speed = 75
|
357
|
+
03:55:49:041 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
358
|
+
03:55:51:682 22fc ETH: checking pool connection...
|
359
|
+
03:55:51:682 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
360
|
+
|
361
|
+
03:55:51:807 22fc got 243 bytes
|
362
|
+
03:55:51:807 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x53037c15fb1cb7d4765ff7d91362a827da8231b3ea3f06921489ea866734e52c","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
363
|
+
|
364
|
+
03:55:51:807 22fc parse packet: 242
|
365
|
+
03:55:51:807 22fc ETH: job is the same
|
366
|
+
03:55:51:823 22fc new buf size: 0
|
367
|
+
03:55:52:354 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
368
|
+
03:55:52:385 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
369
|
+
03:55:52:401 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
370
|
+
03:55:55:713 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
371
|
+
03:55:55:760 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
372
|
+
03:55:55:776 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
373
|
+
03:55:59:073 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
374
|
+
03:55:59:104 1ba0 GPU 1 temp = 47, old fan speed = 87, new fan speed = 75
|
375
|
+
03:55:59:276 1ba0 GPU 2 temp = 44, old fan speed = 0, new fan speed = 75
|
376
|
+
03:55:59:479 1ba0 GPU0 t=48C fan=83%, GPU1 t=47C fan=87%, GPU2 t=44C fan=0%
|
377
|
+
03:55:59:479 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 31,
|
378
|
+
03:55:59:479 1ba0 watchdog - thread 0 (gpu0), hb time 62
|
379
|
+
03:55:59:479 1ba0 watchdog - thread 1 (gpu0), hb time 125
|
380
|
+
03:55:59:495 1ba0 watchdog - thread 2 (gpu1), hb time 156
|
381
|
+
03:55:59:495 1ba0 watchdog - thread 3 (gpu1), hb time 63
|
382
|
+
03:55:59:495 1ba0 watchdog - thread 4 (gpu2), hb time 0
|
383
|
+
03:55:59:510 1ba0 watchdog - thread 5 (gpu2), hb time 93
|
384
|
+
03:56:01:323 22fc got 243 bytes
|
385
|
+
03:56:01:323 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3fcb9c4297edd5220e8fb0c2fdd28dc351aced789cbe7401ad868f37c081ded2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
386
|
+
|
387
|
+
03:56:01:323 22fc parse packet: 242
|
388
|
+
03:56:01:339 22fc ETH: job changed
|
389
|
+
03:56:01:339 22fc new buf size: 0
|
390
|
+
03:56:01:339 22fc ETH: 01/19/18-03:56:01 - New job from eth-eu2.nanopool.org:9999
|
391
|
+
03:56:01:354 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
392
|
+
03:56:01:354 22fc ETH - Total Speed: 82.932 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:01
|
393
|
+
03:56:01:354 22fc ETH: GPU0 30.049 Mh/s, GPU1 23.138 Mh/s, GPU2 29.745 Mh/s
|
394
|
+
03:56:01:370 22fc SC - Total Speed: 1078.119 Mh/s, Total Shares: 0, Rejected: 0
|
395
|
+
03:56:01:370 22fc SC: GPU0 390.638 Mh/s, GPU1 300.792 Mh/s, GPU2 386.689 Mh/s
|
396
|
+
03:56:01:620 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f56d7e", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
397
|
+
|
398
|
+
03:56:01:698 22fc ETH: checking pool connection...
|
399
|
+
03:56:01:698 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
400
|
+
|
401
|
+
03:56:01:901 22fc got 243 bytes
|
402
|
+
03:56:01:901 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3fcb9c4297edd5220e8fb0c2fdd28dc351aced789cbe7401ad868f37c081ded2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
403
|
+
|
404
|
+
03:56:01:901 22fc parse packet: 242
|
405
|
+
03:56:01:901 22fc ETH: job is the same
|
406
|
+
03:56:01:917 22fc new buf size: 0
|
407
|
+
03:56:02:792 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
408
|
+
03:56:02:823 1ba0 GPU 1 temp = 47, old fan speed = 87, new fan speed = 75
|
409
|
+
03:56:02:995 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
410
|
+
03:56:06:308 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
411
|
+
03:56:06:339 1ba0 GPU 1 temp = 47, old fan speed = 87, new fan speed = 75
|
412
|
+
03:56:06:511 1ba0 GPU 2 temp = 47, old fan speed = 0, new fan speed = 75
|
413
|
+
03:56:09:823 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
414
|
+
03:56:09:855 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
415
|
+
03:56:10:026 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
416
|
+
03:56:11:714 22fc ETH: checking pool connection...
|
417
|
+
03:56:11:714 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
418
|
+
|
419
|
+
03:56:11:839 22fc got 243 bytes
|
420
|
+
03:56:11:839 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3fcb9c4297edd5220e8fb0c2fdd28dc351aced789cbe7401ad868f37c081ded2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
421
|
+
|
422
|
+
03:56:11:839 22fc parse packet: 242
|
423
|
+
03:56:11:839 22fc ETH: job is the same
|
424
|
+
03:56:11:855 22fc new buf size: 0
|
425
|
+
03:56:12:558 22fc got 243 bytes
|
426
|
+
03:56:12:558 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x128bec7780e10f47b9defeee3739f019e65a34d8f2b3979c769264426f0211f4","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
427
|
+
|
428
|
+
03:56:12:558 22fc parse packet: 242
|
429
|
+
03:56:12:558 22fc ETH: job changed
|
430
|
+
03:56:12:573 22fc new buf size: 0
|
431
|
+
03:56:12:573 22fc ETH: 01/19/18-03:56:12 - New job from eth-eu2.nanopool.org:9999
|
432
|
+
03:56:12:573 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
433
|
+
03:56:12:589 22fc ETH - Total Speed: 83.217 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:01
|
434
|
+
03:56:12:589 22fc ETH: GPU0 30.044 Mh/s, GPU1 23.128 Mh/s, GPU2 30.045 Mh/s
|
435
|
+
03:56:12:589 22fc SC - Total Speed: 1081.815 Mh/s, Total Shares: 0, Rejected: 0
|
436
|
+
03:56:12:605 22fc SC: GPU0 390.566 Mh/s, GPU1 300.661 Mh/s, GPU2 390.588 Mh/s
|
437
|
+
03:56:13:339 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
438
|
+
03:56:13:386 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
439
|
+
03:56:13:402 1ba0 GPU 2 temp = 49, old fan speed = 84, new fan speed = 75
|
440
|
+
03:56:16:699 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
441
|
+
03:56:16:746 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
442
|
+
03:56:16:761 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
443
|
+
03:56:19:121 22fc got 243 bytes
|
444
|
+
03:56:19:121 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xe47205b52d59b0438f3f91546d48a11c331a392c18ebeb67126fa1a849f70b7d","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
445
|
+
|
446
|
+
03:56:19:121 22fc parse packet: 242
|
447
|
+
03:56:19:121 22fc ETH: job changed
|
448
|
+
03:56:19:136 22fc new buf size: 0
|
449
|
+
03:56:19:136 22fc ETH: 01/19/18-03:56:19 - New job from eth-eu2.nanopool.org:9999
|
450
|
+
03:56:19:136 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
451
|
+
03:56:19:152 22fc ETH - Total Speed: 82.935 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:01
|
452
|
+
03:56:19:152 22fc ETH: GPU0 30.017 Mh/s, GPU1 23.105 Mh/s, GPU2 29.813 Mh/s
|
453
|
+
03:56:19:152 22fc SC - Total Speed: 1078.150 Mh/s, Total Shares: 0, Rejected: 0
|
454
|
+
03:56:19:167 22fc SC: GPU0 390.219 Mh/s, GPU1 300.364 Mh/s, GPU2 387.567 Mh/s
|
455
|
+
03:56:20:089 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
456
|
+
03:56:20:121 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
457
|
+
03:56:20:136 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
458
|
+
03:56:21:636 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f51a8f", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
459
|
+
|
460
|
+
03:56:21:730 22fc ETH: checking pool connection...
|
461
|
+
03:56:21:730 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
462
|
+
|
463
|
+
03:56:21:902 22fc got 243 bytes
|
464
|
+
03:56:21:902 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xe47205b52d59b0438f3f91546d48a11c331a392c18ebeb67126fa1a849f70b7d","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
465
|
+
|
466
|
+
03:56:21:902 22fc parse packet: 242
|
467
|
+
03:56:21:902 22fc ETH: job is the same
|
468
|
+
03:56:21:918 22fc new buf size: 0
|
469
|
+
03:56:23:449 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
470
|
+
03:56:23:465 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
471
|
+
03:56:23:480 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
472
|
+
03:56:26:793 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
473
|
+
03:56:26:824 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
474
|
+
03:56:26:840 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
475
|
+
03:56:29:355 1758 got 299 bytes
|
476
|
+
03:56:29:355 1758 buf: {"id":6,"jsonrpc":"2.0","params":["4","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000000918615a0000000019ecc269e02cc5d6abed60d31fe7d5dc2c3fb10749bffdb22cd76362dc993237","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
477
|
+
|
478
|
+
03:56:29:355 1758 parse packet: 298
|
479
|
+
03:56:29:371 1758 sc: job changed(2)
|
480
|
+
03:56:29:371 1758 new buf size: 0
|
481
|
+
03:56:29:371 1758 SC: 01/19/18-03:56:29 - New job from sia-eu2.nanopool.org:7777
|
482
|
+
03:56:29:371 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
483
|
+
03:56:30:152 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
484
|
+
03:56:30:340 1ba0 GPU 1 temp = 44, old fan speed = 0, new fan speed = 75
|
485
|
+
03:56:30:355 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
486
|
+
03:56:31:746 22fc ETH: checking pool connection...
|
487
|
+
03:56:31:746 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
488
|
+
|
489
|
+
03:56:31:871 22fc got 243 bytes
|
490
|
+
03:56:31:871 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xe47205b52d59b0438f3f91546d48a11c331a392c18ebeb67126fa1a849f70b7d","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
491
|
+
|
492
|
+
03:56:31:871 22fc parse packet: 242
|
493
|
+
03:56:31:871 22fc ETH: job is the same
|
494
|
+
03:56:31:887 22fc new buf size: 0
|
495
|
+
03:56:33:652 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
496
|
+
03:56:33:840 1ba0 GPU 1 temp = 45, old fan speed = 0, new fan speed = 75
|
497
|
+
03:56:33:856 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
498
|
+
03:56:34:043 1ba0 GPU0 t=48C fan=83%, GPU1 t=45C fan=0%, GPU2 t=46C fan=87%
|
499
|
+
03:56:34:043 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 32,
|
500
|
+
03:56:34:043 1ba0 watchdog - thread 0 (gpu0), hb time 47
|
501
|
+
03:56:34:059 1ba0 watchdog - thread 1 (gpu0), hb time 125
|
502
|
+
03:56:34:059 1ba0 watchdog - thread 2 (gpu1), hb time 15
|
503
|
+
03:56:34:059 1ba0 watchdog - thread 3 (gpu1), hb time 109
|
504
|
+
03:56:34:059 1ba0 watchdog - thread 4 (gpu2), hb time 125
|
505
|
+
03:56:34:074 1ba0 watchdog - thread 5 (gpu2), hb time 78
|
506
|
+
03:56:37:356 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
507
|
+
03:56:37:574 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
508
|
+
03:56:37:590 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
509
|
+
03:56:40:903 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
510
|
+
03:56:41:075 1ba0 GPU 1 temp = 48, old fan speed = 0, new fan speed = 75
|
511
|
+
03:56:41:090 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
512
|
+
03:56:41:653 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f6336b", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
513
|
+
|
514
|
+
03:56:41:762 22fc ETH: checking pool connection...
|
515
|
+
03:56:41:762 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
516
|
+
|
517
|
+
03:56:41:918 22fc got 243 bytes
|
518
|
+
03:56:41:918 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xe47205b52d59b0438f3f91546d48a11c331a392c18ebeb67126fa1a849f70b7d","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
519
|
+
|
520
|
+
03:56:41:918 22fc parse packet: 242
|
521
|
+
03:56:41:918 22fc ETH: job is the same
|
522
|
+
03:56:41:934 22fc new buf size: 0
|
523
|
+
03:56:41:965 22fc got 243 bytes
|
524
|
+
03:56:41:965 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x44a63a5012621e8104eb197dc8ebf0161e9aea0b96cc7b09648b727ca0dc2fbe","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
525
|
+
|
526
|
+
03:56:41:965 22fc parse packet: 242
|
527
|
+
03:56:41:965 22fc ETH: job changed
|
528
|
+
03:56:41:981 22fc new buf size: 0
|
529
|
+
03:56:41:981 22fc ETH: 01/19/18-03:56:41 - New job from eth-eu2.nanopool.org:9999
|
530
|
+
03:56:41:981 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
531
|
+
03:56:41:997 22fc ETH - Total Speed: 82.771 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:02
|
532
|
+
03:56:41:997 22fc ETH: GPU0 29.812 Mh/s, GPU1 23.123 Mh/s, GPU2 29.836 Mh/s
|
533
|
+
03:56:41:997 22fc SC - Total Speed: 1076.026 Mh/s, Total Shares: 0, Rejected: 0
|
534
|
+
03:56:42:012 22fc SC: GPU0 387.556 Mh/s, GPU1 300.599 Mh/s, GPU2 387.871 Mh/s
|
535
|
+
03:56:44:403 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
536
|
+
03:56:44:450 1ba0 GPU 1 temp = 49, old fan speed = 73, new fan speed = 75
|
537
|
+
03:56:44:465 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
538
|
+
03:56:47:778 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
539
|
+
03:56:47:809 1ba0 GPU 1 temp = 49, old fan speed = 86, new fan speed = 75
|
540
|
+
03:56:47:981 1ba0 GPU 2 temp = 44, old fan speed = 0, new fan speed = 75
|
541
|
+
03:56:51:278 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
542
|
+
03:56:51:294 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
543
|
+
03:56:51:481 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
544
|
+
03:56:51:778 22fc ETH: checking pool connection...
|
545
|
+
03:56:51:778 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
546
|
+
|
547
|
+
03:56:51:903 22fc got 243 bytes
|
548
|
+
03:56:51:903 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x44a63a5012621e8104eb197dc8ebf0161e9aea0b96cc7b09648b727ca0dc2fbe","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
549
|
+
|
550
|
+
03:56:51:903 22fc parse packet: 242
|
551
|
+
03:56:51:903 22fc ETH: job is the same
|
552
|
+
03:56:51:919 22fc new buf size: 0
|
553
|
+
03:56:54:778 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
554
|
+
03:56:54:810 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
555
|
+
03:56:54:981 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
556
|
+
03:56:58:278 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
557
|
+
03:56:58:310 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
558
|
+
03:56:58:482 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
559
|
+
03:57:01:669 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f57ebe", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
560
|
+
|
561
|
+
03:57:01:794 22fc ETH: checking pool connection...
|
562
|
+
03:57:01:794 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
563
|
+
|
564
|
+
03:57:01:794 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
565
|
+
03:57:01:826 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
566
|
+
03:57:01:841 1ba0 GPU 2 temp = 49, old fan speed = 83, new fan speed = 75
|
567
|
+
03:57:01:935 22fc got 243 bytes
|
568
|
+
03:57:01:935 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x44a63a5012621e8104eb197dc8ebf0161e9aea0b96cc7b09648b727ca0dc2fbe","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
569
|
+
|
570
|
+
03:57:01:935 22fc parse packet: 242
|
571
|
+
03:57:01:935 22fc ETH: job is the same
|
572
|
+
03:57:01:951 22fc new buf size: 0
|
573
|
+
03:57:05:138 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
574
|
+
03:57:05:169 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
575
|
+
03:57:05:185 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
576
|
+
03:57:08:498 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
577
|
+
03:57:08:529 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
578
|
+
03:57:08:545 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
579
|
+
03:57:08:576 1ba0 GPU0 t=47C fan=83%, GPU1 t=46C fan=86%, GPU2 t=47C fan=87%
|
580
|
+
03:57:08:576 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 0,
|
581
|
+
03:57:08:576 1ba0 watchdog - thread 0 (gpu0), hb time 125
|
582
|
+
03:57:08:591 1ba0 watchdog - thread 1 (gpu0), hb time 63
|
583
|
+
03:57:08:591 1ba0 watchdog - thread 2 (gpu1), hb time 32
|
584
|
+
03:57:08:591 1ba0 watchdog - thread 3 (gpu1), hb time 125
|
585
|
+
03:57:08:607 1ba0 watchdog - thread 4 (gpu2), hb time 78
|
586
|
+
03:57:08:607 1ba0 watchdog - thread 5 (gpu2), hb time 15
|
587
|
+
03:57:09:232 275c SC: put share nonce 1f3576a enonce 1ff2068b
|
588
|
+
03:57:09:232 275c SC round found 1 shares
|
589
|
+
03:57:09:248 1758 SC: 01/19/18-03:57:09 - SHARE FOUND - (GPU 0)
|
590
|
+
|
591
|
+
03:57:09:388 1758 got 39 bytes
|
592
|
+
03:57:09:388 1758 buf: {"jsonrpc":"2.0","id":4,"result":true}
|
593
|
+
|
594
|
+
03:57:09:388 1758 parse packet: 38
|
595
|
+
03:57:09:388 1758 SC: Share accepted (140 ms)!
|
596
|
+
03:57:09:404 1758 new buf size: 0
|
597
|
+
03:57:10:623 22fc got 243 bytes
|
598
|
+
03:57:10:623 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xb7424731420834c4e8e085bc72d49d33e238bd73a6d1d6f0de81204b32d09c99","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
599
|
+
|
600
|
+
03:57:10:623 22fc parse packet: 242
|
601
|
+
03:57:10:623 22fc ETH: job changed
|
602
|
+
03:57:10:638 22fc new buf size: 0
|
603
|
+
03:57:10:638 22fc ETH: 01/19/18-03:57:10 - New job from eth-eu2.nanopool.org:9999
|
604
|
+
03:57:10:638 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
605
|
+
03:57:10:654 22fc ETH - Total Speed: 83.210 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:02
|
606
|
+
03:57:10:654 22fc ETH: GPU0 30.060 Mh/s, GPU1 23.134 Mh/s, GPU2 30.017 Mh/s
|
607
|
+
03:57:10:654 22fc SC - Total Speed: 1081.734 Mh/s, Total Shares: 1, Rejected: 0
|
608
|
+
03:57:10:670 22fc SC: GPU0 390.776 Mh/s, GPU1 300.739 Mh/s, GPU2 390.219 Mh/s
|
609
|
+
03:57:11:810 22fc ETH: checking pool connection...
|
610
|
+
03:57:11:810 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
611
|
+
|
612
|
+
03:57:11:904 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
613
|
+
03:57:11:935 22fc got 243 bytes
|
614
|
+
03:57:11:935 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xb7424731420834c4e8e085bc72d49d33e238bd73a6d1d6f0de81204b32d09c99","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
615
|
+
|
616
|
+
03:57:11:935 22fc parse packet: 242
|
617
|
+
03:57:11:935 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
618
|
+
03:57:11:935 22fc ETH: job is the same
|
619
|
+
03:57:11:951 22fc new buf size: 0
|
620
|
+
03:57:11:967 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
621
|
+
03:57:15:279 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
622
|
+
03:57:15:295 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
623
|
+
03:57:15:310 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
624
|
+
03:57:18:014 22fc got 243 bytes
|
625
|
+
03:57:18:014 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xa589d181c629346657ac57829b4e79fbc34d3f4840578cea87b3112806d5dcd0","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
626
|
+
|
627
|
+
03:57:18:014 22fc parse packet: 242
|
628
|
+
03:57:18:029 22fc ETH: job changed
|
629
|
+
03:57:18:029 22fc new buf size: 0
|
630
|
+
03:57:18:029 22fc ETH: 01/19/18-03:57:18 - New job from eth-eu2.nanopool.org:9999
|
631
|
+
03:57:18:029 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
632
|
+
03:57:18:045 22fc ETH - Total Speed: 82.902 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:02
|
633
|
+
03:57:18:045 22fc ETH: GPU0 29.755 Mh/s, GPU1 23.108 Mh/s, GPU2 30.039 Mh/s
|
634
|
+
03:57:18:061 22fc SC - Total Speed: 1077.719 Mh/s, Total Shares: 1, Rejected: 0
|
635
|
+
03:57:18:061 22fc SC: GPU0 386.808 Mh/s, GPU1 300.400 Mh/s, GPU2 390.511 Mh/s
|
636
|
+
03:57:18:607 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
637
|
+
03:57:18:639 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
638
|
+
03:57:18:654 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
639
|
+
03:57:21:686 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f61522", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
640
|
+
|
641
|
+
03:57:21:826 22fc ETH: checking pool connection...
|
642
|
+
03:57:21:826 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
643
|
+
|
644
|
+
03:57:21:951 22fc got 243 bytes
|
645
|
+
03:57:21:951 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xa589d181c629346657ac57829b4e79fbc34d3f4840578cea87b3112806d5dcd0","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
646
|
+
|
647
|
+
03:57:21:951 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
648
|
+
03:57:21:951 22fc parse packet: 242
|
649
|
+
03:57:21:967 22fc ETH: job is the same
|
650
|
+
03:57:21:967 22fc new buf size: 0
|
651
|
+
03:57:21:983 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
652
|
+
03:57:21:998 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
653
|
+
03:57:22:467 22fc got 243 bytes
|
654
|
+
03:57:22:467 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x4c7cf204689eb5c74a6950283d887e619cc4fbef773b0040d293e7324aa90443","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
655
|
+
|
656
|
+
03:57:22:467 22fc parse packet: 242
|
657
|
+
03:57:22:467 22fc ETH: job changed
|
658
|
+
03:57:22:483 22fc new buf size: 0
|
659
|
+
03:57:22:483 22fc ETH: 01/19/18-03:57:22 - New job from eth-eu2.nanopool.org:9999
|
660
|
+
03:57:22:483 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
661
|
+
03:57:22:498 22fc ETH - Total Speed: 83.050 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:03
|
662
|
+
03:57:22:498 22fc ETH: GPU0 29.960 Mh/s, GPU1 23.118 Mh/s, GPU2 29.972 Mh/s
|
663
|
+
03:57:22:498 22fc SC - Total Speed: 1079.649 Mh/s, Total Shares: 1, Rejected: 0
|
664
|
+
03:57:22:514 22fc SC: GPU0 389.477 Mh/s, GPU1 300.530 Mh/s, GPU2 389.642 Mh/s
|
665
|
+
03:57:25:311 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
666
|
+
03:57:25:358 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
667
|
+
03:57:25:373 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
668
|
+
03:57:27:764 22fc got 243 bytes
|
669
|
+
03:57:27:764 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3acea4db1a476ea6d5225e2b5fb4baff626f7e685401d74bab3da1ac01347489","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
670
|
+
|
671
|
+
03:57:27:764 22fc parse packet: 242
|
672
|
+
03:57:27:764 22fc ETH: job changed
|
673
|
+
03:57:27:780 22fc new buf size: 0
|
674
|
+
03:57:27:780 22fc ETH: 01/19/18-03:57:27 - New job from eth-eu2.nanopool.org:9999
|
675
|
+
03:57:27:780 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
676
|
+
03:57:27:795 22fc ETH - Total Speed: 81.621 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:03
|
677
|
+
03:57:27:795 22fc ETH: GPU0 30.051 Mh/s, GPU1 21.522 Mh/s, GPU2 30.047 Mh/s
|
678
|
+
03:57:27:795 22fc SC - Total Speed: 1061.072 Mh/s, Total Shares: 1, Rejected: 0
|
679
|
+
03:57:27:811 22fc SC: GPU0 390.665 Mh/s, GPU1 279.791 Mh/s, GPU2 390.616 Mh/s
|
680
|
+
03:57:28:686 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
681
|
+
03:57:28:717 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
682
|
+
03:57:28:733 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
683
|
+
03:57:31:045 1758 got 299 bytes
|
684
|
+
03:57:31:045 1758 buf: {"id":6,"jsonrpc":"2.0","params":["5","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000004518615a0000000066795a722a084965f431896f04d93a6bb8cf20eaa6263d91aa227656e6725d3b","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
685
|
+
|
686
|
+
03:57:31:045 1758 parse packet: 298
|
687
|
+
03:57:31:045 1758 sc: job changed(2)
|
688
|
+
03:57:31:061 1758 new buf size: 0
|
689
|
+
03:57:31:061 1758 SC: 01/19/18-03:57:31 - New job from sia-eu2.nanopool.org:7777
|
690
|
+
03:57:31:061 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
691
|
+
03:57:31:842 22fc ETH: checking pool connection...
|
692
|
+
03:57:31:842 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
693
|
+
|
694
|
+
03:57:31:967 22fc got 243 bytes
|
695
|
+
03:57:31:967 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3acea4db1a476ea6d5225e2b5fb4baff626f7e685401d74bab3da1ac01347489","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
696
|
+
|
697
|
+
03:57:31:967 22fc parse packet: 242
|
698
|
+
03:57:31:967 22fc ETH: job is the same
|
699
|
+
03:57:31:983 22fc new buf size: 0
|
700
|
+
03:57:32:030 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
701
|
+
03:57:32:077 1ba0 GPU 1 temp = 44, old fan speed = 87, new fan speed = 75
|
702
|
+
03:57:32:092 1ba0 GPU 2 temp = 44, old fan speed = 87, new fan speed = 75
|
703
|
+
03:57:35:389 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
704
|
+
03:57:35:577 1ba0 GPU 1 temp = 44, old fan speed = 0, new fan speed = 75
|
705
|
+
03:57:35:749 1ba0 GPU 2 temp = 44, old fan speed = 0, new fan speed = 75
|
706
|
+
03:57:39:046 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
707
|
+
03:57:39:249 1ba0 GPU 1 temp = 45, old fan speed = 0, new fan speed = 75
|
708
|
+
03:57:39:421 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
709
|
+
03:57:41:702 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f4a155", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
710
|
+
|
711
|
+
03:57:41:858 22fc ETH: checking pool connection...
|
712
|
+
03:57:41:858 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
713
|
+
|
714
|
+
03:57:41:983 22fc got 243 bytes
|
715
|
+
03:57:41:983 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3acea4db1a476ea6d5225e2b5fb4baff626f7e685401d74bab3da1ac01347489","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
716
|
+
|
717
|
+
03:57:41:983 22fc parse packet: 242
|
718
|
+
03:57:41:983 22fc ETH: job is the same
|
719
|
+
03:57:41:999 22fc new buf size: 0
|
720
|
+
03:57:42:718 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
721
|
+
03:57:42:905 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
722
|
+
03:57:43:077 1ba0 GPU 2 temp = 47, old fan speed = 0, new fan speed = 75
|
723
|
+
03:57:43:437 1ba0 GPU0 t=48C fan=82%, GPU1 t=47C fan=0%, GPU2 t=47C fan=0%
|
724
|
+
03:57:43:437 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 78,
|
725
|
+
03:57:43:437 1ba0 watchdog - thread 0 (gpu0), hb time 140
|
726
|
+
03:57:43:452 1ba0 watchdog - thread 1 (gpu0), hb time 78
|
727
|
+
03:57:43:452 1ba0 watchdog - thread 2 (gpu1), hb time 188
|
728
|
+
03:57:43:452 1ba0 watchdog - thread 3 (gpu1), hb time 94
|
729
|
+
03:57:43:452 1ba0 watchdog - thread 4 (gpu2), hb time 78
|
730
|
+
03:57:43:468 1ba0 watchdog - thread 5 (gpu2), hb time 16
|
731
|
+
03:57:46:749 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
732
|
+
03:57:46:937 1ba0 GPU 1 temp = 48, old fan speed = 0, new fan speed = 75
|
733
|
+
03:57:47:109 1ba0 GPU 2 temp = 49, old fan speed = 0, new fan speed = 75
|
734
|
+
03:57:50:406 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
735
|
+
03:57:50:453 1ba0 GPU 1 temp = 49, old fan speed = 86, new fan speed = 75
|
736
|
+
03:57:50:468 1ba0 GPU 2 temp = 49, old fan speed = 86, new fan speed = 75
|
737
|
+
03:57:51:874 22fc ETH: checking pool connection...
|
738
|
+
03:57:51:874 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
739
|
+
|
740
|
+
03:57:51:999 22fc got 243 bytes
|
741
|
+
03:57:51:999 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3acea4db1a476ea6d5225e2b5fb4baff626f7e685401d74bab3da1ac01347489","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
742
|
+
|
743
|
+
03:57:51:999 22fc parse packet: 242
|
744
|
+
03:57:51:999 22fc ETH: job is the same
|
745
|
+
03:57:52:015 22fc new buf size: 0
|
746
|
+
03:57:53:781 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
747
|
+
03:57:53:812 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
748
|
+
03:57:53:828 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
749
|
+
03:57:57:125 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
750
|
+
03:57:57:156 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
751
|
+
03:57:57:172 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
752
|
+
03:58:00:469 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
753
|
+
03:58:00:500 1ba0 GPU 1 temp = 47, old fan speed = 87, new fan speed = 75
|
754
|
+
03:58:00:515 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
755
|
+
03:58:01:719 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4c95f12", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
756
|
+
|
757
|
+
03:58:01:891 22fc ETH: checking pool connection...
|
758
|
+
03:58:01:891 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
759
|
+
|
760
|
+
03:58:02:016 22fc got 243 bytes
|
761
|
+
03:58:02:016 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3acea4db1a476ea6d5225e2b5fb4baff626f7e685401d74bab3da1ac01347489","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
762
|
+
|
763
|
+
03:58:02:016 22fc parse packet: 242
|
764
|
+
03:58:02:016 22fc ETH: job is the same
|
765
|
+
03:58:02:031 22fc new buf size: 0
|
766
|
+
03:58:03:812 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
767
|
+
03:58:03:844 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
768
|
+
03:58:03:859 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
769
|
+
03:58:07:156 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
770
|
+
03:58:07:188 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
771
|
+
03:58:07:203 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
772
|
+
03:58:10:531 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
773
|
+
03:58:10:547 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
774
|
+
03:58:10:563 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
775
|
+
03:58:11:907 22fc ETH: checking pool connection...
|
776
|
+
03:58:11:907 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
777
|
+
|
778
|
+
03:58:12:032 22fc got 243 bytes
|
779
|
+
03:58:12:032 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x3acea4db1a476ea6d5225e2b5fb4baff626f7e685401d74bab3da1ac01347489","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
780
|
+
|
781
|
+
03:58:12:032 22fc parse packet: 242
|
782
|
+
03:58:12:032 22fc ETH: job is the same
|
783
|
+
03:58:12:047 22fc new buf size: 0
|
784
|
+
03:58:13:875 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
785
|
+
03:58:13:907 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
786
|
+
03:58:13:922 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
787
|
+
03:58:16:344 22fc got 243 bytes
|
788
|
+
03:58:16:344 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x72597839b07d123f6034a5c12ec282308b43389094d69f90d9cbf266e71dab76","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
789
|
+
|
790
|
+
03:58:16:344 22fc parse packet: 242
|
791
|
+
03:58:16:344 22fc ETH: job changed
|
792
|
+
03:58:16:360 22fc new buf size: 0
|
793
|
+
03:58:16:360 22fc ETH: 01/19/18-03:58:16 - New job from eth-eu2.nanopool.org:9999
|
794
|
+
03:58:16:360 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
795
|
+
03:58:16:375 22fc ETH - Total Speed: 83.176 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:03
|
796
|
+
03:58:16:375 22fc ETH: GPU0 30.018 Mh/s, GPU1 23.133 Mh/s, GPU2 30.025 Mh/s
|
797
|
+
03:58:16:375 22fc SC - Total Speed: 1081.292 Mh/s, Total Shares: 1, Rejected: 0
|
798
|
+
03:58:16:391 22fc SC: GPU0 390.235 Mh/s, GPU1 300.733 Mh/s, GPU2 390.324 Mh/s
|
799
|
+
03:58:17:219 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
800
|
+
03:58:17:251 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
801
|
+
03:58:17:266 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
802
|
+
03:58:17:329 1ba0 GPU0 t=48C fan=83%, GPU1 t=45C fan=86%, GPU2 t=45C fan=87%
|
803
|
+
03:58:17:329 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 63,
|
804
|
+
03:58:17:329 1ba0 watchdog - thread 0 (gpu0), hb time 16
|
805
|
+
03:58:17:329 1ba0 watchdog - thread 1 (gpu0), hb time 94
|
806
|
+
03:58:17:344 1ba0 watchdog - thread 2 (gpu1), hb time 172
|
807
|
+
03:58:17:344 1ba0 watchdog - thread 3 (gpu1), hb time 79
|
808
|
+
03:58:17:344 1ba0 watchdog - thread 4 (gpu2), hb time 110
|
809
|
+
03:58:17:360 1ba0 watchdog - thread 5 (gpu2), hb time 47
|
810
|
+
03:58:19:876 22fc got 243 bytes
|
811
|
+
03:58:19:876 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x9a16b78d1a4848ea1eff96bc26f56d65c8d6099cf67a8895d25fe9baa49256a0","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
812
|
+
|
813
|
+
03:58:19:876 22fc parse packet: 242
|
814
|
+
03:58:19:876 22fc ETH: job changed
|
815
|
+
03:58:19:891 22fc new buf size: 0
|
816
|
+
03:58:19:891 22fc ETH: 01/19/18-03:58:19 - New job from eth-eu2.nanopool.org:9999
|
817
|
+
03:58:19:891 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
818
|
+
03:58:19:907 22fc ETH - Total Speed: 83.074 Mh/s, Total Shares: 0, Rejected: 0, Time: 00:03
|
819
|
+
03:58:19:907 22fc ETH: GPU0 29.981 Mh/s, GPU1 23.127 Mh/s, GPU2 29.966 Mh/s
|
820
|
+
03:58:19:907 22fc SC - Total Speed: 1079.960 Mh/s, Total Shares: 1, Rejected: 0
|
821
|
+
03:58:19:923 22fc SC: GPU0 389.752 Mh/s, GPU1 300.654 Mh/s, GPU2 389.554 Mh/s
|
822
|
+
03:58:20:641 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
823
|
+
03:58:20:673 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
824
|
+
03:58:20:688 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
825
|
+
03:58:21:735 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4c9b406", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
826
|
+
|
827
|
+
03:58:21:923 22fc ETH: checking pool connection...
|
828
|
+
03:58:21:923 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
829
|
+
|
830
|
+
03:58:22:048 22fc got 243 bytes
|
831
|
+
03:58:22:048 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x9a16b78d1a4848ea1eff96bc26f56d65c8d6099cf67a8895d25fe9baa49256a0","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
832
|
+
|
833
|
+
03:58:22:048 22fc parse packet: 242
|
834
|
+
03:58:22:048 22fc ETH: job is the same
|
835
|
+
03:58:22:063 22fc new buf size: 0
|
836
|
+
03:58:24:001 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
837
|
+
03:58:24:032 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
838
|
+
03:58:24:048 1ba0 GPU 2 temp = 44, old fan speed = 87, new fan speed = 75
|
839
|
+
03:58:27:360 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
840
|
+
03:58:27:407 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
841
|
+
03:58:27:579 1ba0 GPU 2 temp = 44, old fan speed = 0, new fan speed = 75
|
842
|
+
03:58:30:907 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
843
|
+
03:58:30:923 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
844
|
+
03:58:31:095 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
845
|
+
03:58:31:939 22fc ETH: checking pool connection...
|
846
|
+
03:58:31:939 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
847
|
+
|
848
|
+
03:58:31:986 1758 got 299 bytes
|
849
|
+
03:58:31:986 1758 buf: {"id":6,"jsonrpc":"2.0","params":["6","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000008118615a00000000e983c477efe912f13133550689f40262df4349307687bbaa8ca512e58d069942","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
850
|
+
|
851
|
+
03:58:31:986 1758 parse packet: 298
|
852
|
+
03:58:31:986 1758 sc: job changed(2)
|
853
|
+
03:58:32:001 1758 new buf size: 0
|
854
|
+
03:58:32:001 1758 SC: 01/19/18-03:58:32 - New job from sia-eu2.nanopool.org:7777
|
855
|
+
03:58:32:001 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
856
|
+
03:58:32:064 22fc got 243 bytes
|
857
|
+
03:58:32:064 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x9a16b78d1a4848ea1eff96bc26f56d65c8d6099cf67a8895d25fe9baa49256a0","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
858
|
+
|
859
|
+
03:58:32:064 22fc parse packet: 242
|
860
|
+
03:58:32:064 22fc ETH: job is the same
|
861
|
+
03:58:32:079 22fc new buf size: 0
|
862
|
+
03:58:34:407 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
863
|
+
03:58:34:423 1ba0 GPU 1 temp = 44, old fan speed = 86, new fan speed = 75
|
864
|
+
03:58:34:595 1ba0 GPU 2 temp = 47, old fan speed = 0, new fan speed = 75
|
865
|
+
03:58:36:111 275c ETH: put share nonce 25965a601c4d208d
|
866
|
+
03:58:36:111 275c ETH round found 1 shares
|
867
|
+
03:58:36:126 22fc ETH: 01/19/18-03:58:36 - SHARE FOUND - (GPU 0)
|
868
|
+
03:58:36:126 22fc send: {"id":4,"method":"eth_submitWork","params":["0x25965a601c4d208d","0x9a16b78d1a4848ea1eff96bc26f56d65c8d6099cf67a8895d25fe9baa49256a0","0x9856b1a0753336359a3ad95f96526e1500d01021f90dfaef1f24ef5447a10422"]}
|
869
|
+
|
870
|
+
03:58:36:267 22fc got 39 bytes
|
871
|
+
03:58:36:267 22fc buf: {"jsonrpc":"2.0","id":4,"result":true}
|
872
|
+
|
873
|
+
03:58:36:267 22fc parse packet: 38
|
874
|
+
03:58:36:267 22fc ETH: Share accepted (140 ms)!
|
875
|
+
03:58:36:283 22fc new buf size: 0
|
876
|
+
03:58:37:908 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
877
|
+
03:58:38:095 1ba0 GPU 1 temp = 44, old fan speed = 0, new fan speed = 75
|
878
|
+
03:58:38:267 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
879
|
+
03:58:41:580 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
880
|
+
03:58:41:752 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f4535d", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
881
|
+
|
882
|
+
03:58:41:767 1ba0 GPU 1 temp = 45, old fan speed = 0, new fan speed = 75
|
883
|
+
03:58:41:783 1ba0 GPU 2 temp = 49, old fan speed = 85, new fan speed = 75
|
884
|
+
03:58:41:955 22fc ETH: checking pool connection...
|
885
|
+
03:58:41:955 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
886
|
+
|
887
|
+
03:58:42:080 22fc got 243 bytes
|
888
|
+
03:58:42:080 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x9a16b78d1a4848ea1eff96bc26f56d65c8d6099cf67a8895d25fe9baa49256a0","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
889
|
+
|
890
|
+
03:58:42:080 22fc parse packet: 242
|
891
|
+
03:58:42:080 22fc ETH: job is the same
|
892
|
+
03:58:42:095 22fc new buf size: 0
|
893
|
+
03:58:45:095 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
894
|
+
03:58:45:283 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
895
|
+
03:58:45:299 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
896
|
+
03:58:48:596 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
897
|
+
03:58:48:783 1ba0 GPU 1 temp = 48, old fan speed = 0, new fan speed = 75
|
898
|
+
03:58:48:799 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
899
|
+
03:58:51:221 22fc got 243 bytes
|
900
|
+
03:58:51:221 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x5dd36efa7dee5dcd523aa561caf9d8d11a8297c9ef54d500ca7ec66089f2fbbf","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
901
|
+
|
902
|
+
03:58:51:221 22fc parse packet: 242
|
903
|
+
03:58:51:221 22fc ETH: job changed
|
904
|
+
03:58:51:236 22fc new buf size: 0
|
905
|
+
03:58:51:236 22fc ETH: 01/19/18-03:58:51 - New job from eth-eu2.nanopool.org:9999
|
906
|
+
03:58:51:236 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
907
|
+
03:58:51:252 22fc ETH - Total Speed: 83.156 Mh/s, Total Shares: 1, Rejected: 0, Time: 00:04
|
908
|
+
03:58:51:252 22fc ETH: GPU0 30.058 Mh/s, GPU1 23.111 Mh/s, GPU2 29.988 Mh/s
|
909
|
+
03:58:51:252 22fc SC - Total Speed: 1081.026 Mh/s, Total Shares: 1, Rejected: 0
|
910
|
+
03:58:51:268 22fc SC: GPU0 390.748 Mh/s, GPU1 300.439 Mh/s, GPU2 389.839 Mh/s
|
911
|
+
03:58:51:971 22fc ETH: checking pool connection...
|
912
|
+
03:58:51:971 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
913
|
+
|
914
|
+
03:58:52:096 22fc got 243 bytes
|
915
|
+
03:58:52:096 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x5dd36efa7dee5dcd523aa561caf9d8d11a8297c9ef54d500ca7ec66089f2fbbf","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
916
|
+
|
917
|
+
03:58:52:096 22fc parse packet: 242
|
918
|
+
03:58:52:096 22fc ETH: job is the same
|
919
|
+
03:58:52:111 22fc new buf size: 0
|
920
|
+
03:58:52:111 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
921
|
+
03:58:52:174 1ba0 GPU 1 temp = 49, old fan speed = 81, new fan speed = 75
|
922
|
+
03:58:52:189 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
923
|
+
03:58:52:221 1ba0 GPU0 t=48C fan=83%, GPU1 t=49C fan=81%, GPU2 t=47C fan=87%
|
924
|
+
03:58:52:221 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 63,
|
925
|
+
03:58:52:221 1ba0 watchdog - thread 0 (gpu0), hb time 110
|
926
|
+
03:58:52:236 1ba0 watchdog - thread 1 (gpu0), hb time 47
|
927
|
+
03:58:52:236 1ba0 watchdog - thread 2 (gpu1), hb time 187
|
928
|
+
03:58:52:236 1ba0 watchdog - thread 3 (gpu1), hb time 94
|
929
|
+
03:58:52:252 1ba0 watchdog - thread 4 (gpu2), hb time 141
|
930
|
+
03:58:52:252 1ba0 watchdog - thread 5 (gpu2), hb time 63
|
931
|
+
03:58:55:549 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
932
|
+
03:58:55:580 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
933
|
+
03:58:55:596 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
934
|
+
03:58:58:909 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
935
|
+
03:58:58:955 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
936
|
+
03:58:58:971 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
937
|
+
03:59:01:752 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f62a7e", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
938
|
+
|
939
|
+
03:59:01:971 22fc ETH: checking pool connection...
|
940
|
+
03:59:01:971 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
941
|
+
|
942
|
+
03:59:02:096 22fc got 243 bytes
|
943
|
+
03:59:02:096 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x5dd36efa7dee5dcd523aa561caf9d8d11a8297c9ef54d500ca7ec66089f2fbbf","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
944
|
+
|
945
|
+
03:59:02:096 22fc parse packet: 242
|
946
|
+
03:59:02:096 22fc ETH: job is the same
|
947
|
+
03:59:02:112 22fc new buf size: 0
|
948
|
+
03:59:02:284 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
949
|
+
03:59:02:315 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
950
|
+
03:59:02:331 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
951
|
+
03:59:05:628 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
952
|
+
03:59:05:659 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
953
|
+
03:59:05:674 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
954
|
+
03:59:08:987 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
955
|
+
03:59:09:018 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
956
|
+
03:59:09:034 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
957
|
+
03:59:11:987 22fc ETH: checking pool connection...
|
958
|
+
03:59:11:987 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
959
|
+
|
960
|
+
03:59:12:112 22fc got 243 bytes
|
961
|
+
03:59:12:112 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x5dd36efa7dee5dcd523aa561caf9d8d11a8297c9ef54d500ca7ec66089f2fbbf","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
962
|
+
|
963
|
+
03:59:12:112 22fc parse packet: 242
|
964
|
+
03:59:12:112 22fc ETH: job is the same
|
965
|
+
03:59:12:128 22fc new buf size: 0
|
966
|
+
03:59:12:347 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
967
|
+
03:59:12:378 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
968
|
+
03:59:12:409 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
969
|
+
03:59:15:706 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
970
|
+
03:59:15:737 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
971
|
+
03:59:15:753 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
972
|
+
03:59:15:769 22fc got 243 bytes
|
973
|
+
03:59:15:769 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xd770e973cb6bc77a8c668c62ce76d038369859443d8317694f61ee1f72d7157b","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
974
|
+
|
975
|
+
03:59:15:769 22fc parse packet: 242
|
976
|
+
03:59:15:769 22fc ETH: job changed
|
977
|
+
03:59:15:784 22fc new buf size: 0
|
978
|
+
03:59:15:784 22fc ETH: 01/19/18-03:59:15 - New job from eth-eu2.nanopool.org:9999
|
979
|
+
03:59:15:784 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
980
|
+
03:59:15:800 22fc ETH - Total Speed: 83.147 Mh/s, Total Shares: 1, Rejected: 0, Time: 00:04
|
981
|
+
03:59:15:800 22fc ETH: GPU0 29.961 Mh/s, GPU1 23.121 Mh/s, GPU2 30.064 Mh/s
|
982
|
+
03:59:15:800 22fc SC - Total Speed: 1080.906 Mh/s, Total Shares: 1, Rejected: 0
|
983
|
+
03:59:15:815 22fc SC: GPU0 389.494 Mh/s, GPU1 300.576 Mh/s, GPU2 390.836 Mh/s
|
984
|
+
03:59:19:050 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
985
|
+
03:59:19:097 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
986
|
+
03:59:19:269 1ba0 GPU 2 temp = 44, old fan speed = 0, new fan speed = 75
|
987
|
+
03:59:21:769 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f6531a", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
988
|
+
|
989
|
+
03:59:22:003 22fc ETH: checking pool connection...
|
990
|
+
03:59:22:003 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
991
|
+
|
992
|
+
03:59:22:128 22fc got 243 bytes
|
993
|
+
03:59:22:128 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xd770e973cb6bc77a8c668c62ce76d038369859443d8317694f61ee1f72d7157b","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
994
|
+
|
995
|
+
03:59:22:128 22fc parse packet: 242
|
996
|
+
03:59:22:144 22fc ETH: job is the same
|
997
|
+
03:59:22:144 22fc new buf size: 0
|
998
|
+
03:59:22:581 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
999
|
+
03:59:22:613 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1000
|
+
03:59:22:753 275c ETH: put share nonce 68250d900c23b0df
|
1001
|
+
03:59:22:753 275c ETH round found 1 shares
|
1002
|
+
03:59:22:769 22fc ETH: 01/19/18-03:59:22 - SHARE FOUND - (GPU 0)
|
1003
|
+
03:59:22:769 22fc send: {"id":4,"method":"eth_submitWork","params":["0x68250d900c23b0df","0xd770e973cb6bc77a8c668c62ce76d038369859443d8317694f61ee1f72d7157b","0xc8a9765b8b391bef93c7c588af59775d263bb7426982645a0542a4d7d8a18149"]}
|
1004
|
+
|
1005
|
+
03:59:22:785 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
1006
|
+
03:59:22:910 22fc got 39 bytes
|
1007
|
+
03:59:22:910 22fc buf: {"jsonrpc":"2.0","id":4,"result":true}
|
1008
|
+
|
1009
|
+
03:59:22:910 22fc parse packet: 38
|
1010
|
+
03:59:22:910 22fc ETH: Share accepted (141 ms)!
|
1011
|
+
03:59:22:925 22fc new buf size: 0
|
1012
|
+
03:59:26:097 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1013
|
+
03:59:26:113 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1014
|
+
03:59:26:300 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
1015
|
+
03:59:26:503 1ba0 GPU0 t=47C fan=82%, GPU1 t=45C fan=86%, GPU2 t=46C fan=0%
|
1016
|
+
03:59:26:503 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 0,
|
1017
|
+
03:59:26:503 1ba0 watchdog - thread 0 (gpu0), hb time 125
|
1018
|
+
03:59:26:503 1ba0 watchdog - thread 1 (gpu0), hb time 46
|
1019
|
+
03:59:26:519 1ba0 watchdog - thread 2 (gpu1), hb time 141
|
1020
|
+
03:59:26:519 1ba0 watchdog - thread 3 (gpu1), hb time 47
|
1021
|
+
03:59:26:519 1ba0 watchdog - thread 4 (gpu2), hb time 109
|
1022
|
+
03:59:26:535 1ba0 watchdog - thread 5 (gpu2), hb time 63
|
1023
|
+
03:59:29:816 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1024
|
+
03:59:29:847 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1025
|
+
03:59:30:019 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
1026
|
+
03:59:30:800 1758 got 299 bytes
|
1027
|
+
03:59:30:800 1758 buf: {"id":6,"jsonrpc":"2.0","params":["7","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a50000000000000000bd18615a00000000faef18088dc2dc827ce7cf865c9a29913a733225bf14eb841cc30e64c7bed282","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
1028
|
+
|
1029
|
+
03:59:30:800 1758 parse packet: 298
|
1030
|
+
03:59:30:800 1758 sc: job changed(2)
|
1031
|
+
03:59:30:816 1758 new buf size: 0
|
1032
|
+
03:59:30:816 1758 SC: 01/19/18-03:59:30 - New job from sia-eu2.nanopool.org:7777
|
1033
|
+
03:59:30:816 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
1034
|
+
03:59:32:019 22fc ETH: checking pool connection...
|
1035
|
+
03:59:32:019 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1036
|
+
|
1037
|
+
03:59:32:144 22fc got 243 bytes
|
1038
|
+
03:59:32:144 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xd770e973cb6bc77a8c668c62ce76d038369859443d8317694f61ee1f72d7157b","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1039
|
+
|
1040
|
+
03:59:32:144 22fc parse packet: 242
|
1041
|
+
03:59:32:144 22fc ETH: job is the same
|
1042
|
+
03:59:32:160 22fc new buf size: 0
|
1043
|
+
03:59:33:332 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1044
|
+
03:59:33:363 1ba0 GPU 1 temp = 44, old fan speed = 86, new fan speed = 75
|
1045
|
+
03:59:33:379 1ba0 GPU 2 temp = 49, old fan speed = 75, new fan speed = 75
|
1046
|
+
03:59:36:691 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1047
|
+
03:59:36:879 1ba0 GPU 1 temp = 44, old fan speed = 0, new fan speed = 75
|
1048
|
+
03:59:36:894 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
1049
|
+
03:59:40:207 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1050
|
+
03:59:40:395 1ba0 GPU 1 temp = 45, old fan speed = 0, new fan speed = 75
|
1051
|
+
03:59:40:410 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
1052
|
+
03:59:41:785 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f54dd2", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1053
|
+
|
1054
|
+
03:59:42:035 22fc ETH: checking pool connection...
|
1055
|
+
03:59:42:035 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1056
|
+
|
1057
|
+
03:59:42:160 22fc got 243 bytes
|
1058
|
+
03:59:42:160 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xd770e973cb6bc77a8c668c62ce76d038369859443d8317694f61ee1f72d7157b","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1059
|
+
|
1060
|
+
03:59:42:160 22fc parse packet: 242
|
1061
|
+
03:59:42:160 22fc ETH: job is the same
|
1062
|
+
03:59:42:176 22fc new buf size: 0
|
1063
|
+
03:59:43:723 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1064
|
+
03:59:43:910 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
1065
|
+
03:59:43:926 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
1066
|
+
03:59:47:239 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1067
|
+
03:59:47:426 1ba0 GPU 1 temp = 48, old fan speed = 0, new fan speed = 75
|
1068
|
+
03:59:47:442 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1069
|
+
03:59:50:442 1158 SC: put share nonce 23509f3 enonce 3dc40279
|
1070
|
+
03:59:50:458 1158 SC round found 1 shares
|
1071
|
+
03:59:50:473 1758 SC: 01/19/18-03:59:50 - SHARE FOUND - (GPU 1)
|
1072
|
+
|
1073
|
+
03:59:50:614 1758 got 39 bytes
|
1074
|
+
03:59:50:614 1758 buf: {"jsonrpc":"2.0","id":4,"result":true}
|
1075
|
+
|
1076
|
+
03:59:50:614 1758 parse packet: 38
|
1077
|
+
03:59:50:614 1758 SC: Share accepted (141 ms)!
|
1078
|
+
03:59:50:629 1758 new buf size: 0
|
1079
|
+
03:59:50:754 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1080
|
+
03:59:50:786 1ba0 GPU 1 temp = 49, old fan speed = 85, new fan speed = 75
|
1081
|
+
03:59:50:801 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1082
|
+
03:59:52:051 22fc ETH: checking pool connection...
|
1083
|
+
03:59:52:051 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1084
|
+
|
1085
|
+
03:59:52:176 22fc got 243 bytes
|
1086
|
+
03:59:52:176 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xd770e973cb6bc77a8c668c62ce76d038369859443d8317694f61ee1f72d7157b","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1087
|
+
|
1088
|
+
03:59:52:176 22fc parse packet: 242
|
1089
|
+
03:59:52:176 22fc ETH: job is the same
|
1090
|
+
03:59:52:192 22fc new buf size: 0
|
1091
|
+
03:59:54:114 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1092
|
+
03:59:54:145 1ba0 GPU 1 temp = 49, old fan speed = 87, new fan speed = 75
|
1093
|
+
03:59:54:161 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1094
|
+
03:59:56:661 22fc got 243 bytes
|
1095
|
+
03:59:56:661 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x6cfbe7ad044dce9273053cfacee3d110dd1ccf8e4c3a85fed4f1fb198f2eef2d","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1096
|
+
|
1097
|
+
03:59:56:661 22fc parse packet: 242
|
1098
|
+
03:59:56:661 22fc ETH: job changed
|
1099
|
+
03:59:56:677 22fc new buf size: 0
|
1100
|
+
03:59:56:677 22fc ETH: 01/19/18-03:59:56 - New job from eth-eu2.nanopool.org:9999
|
1101
|
+
03:59:56:677 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1102
|
+
03:59:56:692 22fc ETH - Total Speed: 83.184 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:05
|
1103
|
+
03:59:56:692 22fc ETH: GPU0 30.037 Mh/s, GPU1 23.126 Mh/s, GPU2 30.021 Mh/s
|
1104
|
+
03:59:56:692 22fc SC - Total Speed: 1081.387 Mh/s, Total Shares: 2, Rejected: 0
|
1105
|
+
03:59:56:708 22fc SC: GPU0 390.478 Mh/s, GPU1 300.641 Mh/s, GPU2 390.268 Mh/s
|
1106
|
+
03:59:57:473 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1107
|
+
03:59:57:505 1ba0 GPU 1 temp = 48, old fan speed = 87, new fan speed = 75
|
1108
|
+
03:59:57:520 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1109
|
+
04:00:00:817 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1110
|
+
04:00:00:880 1ba0 GPU 1 temp = 47, old fan speed = 87, new fan speed = 75
|
1111
|
+
04:00:00:895 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1112
|
+
04:00:00:927 1ba0 GPU0 t=48C fan=83%, GPU1 t=47C fan=87%, GPU2 t=45C fan=87%
|
1113
|
+
04:00:00:927 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 78,
|
1114
|
+
04:00:00:927 1ba0 watchdog - thread 0 (gpu0), hb time 109
|
1115
|
+
04:00:00:942 1ba0 watchdog - thread 1 (gpu0), hb time 47
|
1116
|
+
04:00:00:942 1ba0 watchdog - thread 2 (gpu1), hb time 94
|
1117
|
+
04:00:00:942 1ba0 watchdog - thread 3 (gpu1), hb time 0
|
1118
|
+
04:00:00:942 1ba0 watchdog - thread 4 (gpu2), hb time 94
|
1119
|
+
04:00:00:958 1ba0 watchdog - thread 5 (gpu2), hb time 32
|
1120
|
+
04:00:01:802 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4c6401d", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1121
|
+
|
1122
|
+
04:00:02:067 22fc ETH: checking pool connection...
|
1123
|
+
04:00:02:067 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1124
|
+
|
1125
|
+
04:00:02:192 22fc got 243 bytes
|
1126
|
+
04:00:02:192 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x6cfbe7ad044dce9273053cfacee3d110dd1ccf8e4c3a85fed4f1fb198f2eef2d","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1127
|
+
|
1128
|
+
04:00:02:192 22fc parse packet: 242
|
1129
|
+
04:00:02:192 22fc ETH: job is the same
|
1130
|
+
04:00:02:208 22fc new buf size: 0
|
1131
|
+
04:00:03:552 249c SC: put share nonce 2867359 enonce d6aa0562
|
1132
|
+
04:00:03:567 249c SC round found 1 shares
|
1133
|
+
04:00:03:583 1758 SC: 01/19/18-04:00:03 - SHARE FOUND - (GPU 2)
|
1134
|
+
|
1135
|
+
04:00:03:724 1758 got 39 bytes
|
1136
|
+
04:00:03:724 1758 buf: {"jsonrpc":"2.0","id":4,"result":true}
|
1137
|
+
|
1138
|
+
04:00:03:724 1758 parse packet: 38
|
1139
|
+
04:00:03:724 1758 SC: Share accepted (140 ms)!
|
1140
|
+
04:00:03:739 1758 new buf size: 0
|
1141
|
+
04:00:04:255 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1142
|
+
04:00:04:286 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
1143
|
+
04:00:04:302 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1144
|
+
04:00:07:615 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1145
|
+
04:00:07:661 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
1146
|
+
04:00:07:833 1ba0 GPU 2 temp = 44, old fan speed = 0, new fan speed = 75
|
1147
|
+
04:00:10:380 22fc got 243 bytes
|
1148
|
+
04:00:10:380 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x6d7b870b090e0ca0e70be88d2762630cbb880616ee2899b23fbd19773a1ce41f","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1149
|
+
|
1150
|
+
04:00:10:380 22fc parse packet: 242
|
1151
|
+
04:00:10:380 22fc ETH: job changed
|
1152
|
+
04:00:10:396 22fc new buf size: 0
|
1153
|
+
04:00:10:396 22fc ETH: 01/19/18-04:00:10 - New job from eth-eu2.nanopool.org:9999
|
1154
|
+
04:00:10:396 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1155
|
+
04:00:10:411 22fc ETH - Total Speed: 83.109 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:05
|
1156
|
+
04:00:10:411 22fc ETH: GPU0 30.003 Mh/s, GPU1 23.112 Mh/s, GPU2 29.994 Mh/s
|
1157
|
+
04:00:10:411 22fc SC - Total Speed: 1080.416 Mh/s, Total Shares: 3, Rejected: 0
|
1158
|
+
04:00:10:427 22fc SC: GPU0 390.037 Mh/s, GPU1 300.452 Mh/s, GPU2 389.927 Mh/s
|
1159
|
+
04:00:11:146 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
1160
|
+
04:00:11:193 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
1161
|
+
04:00:11:365 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
1162
|
+
04:00:12:083 22fc ETH: checking pool connection...
|
1163
|
+
04:00:12:083 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1164
|
+
|
1165
|
+
04:00:12:208 22fc got 243 bytes
|
1166
|
+
04:00:12:208 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x6d7b870b090e0ca0e70be88d2762630cbb880616ee2899b23fbd19773a1ce41f","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1167
|
+
|
1168
|
+
04:00:12:208 22fc parse packet: 242
|
1169
|
+
04:00:12:208 22fc ETH: job is the same
|
1170
|
+
04:00:12:224 22fc new buf size: 0
|
1171
|
+
04:00:14:677 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1172
|
+
04:00:14:709 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
1173
|
+
04:00:14:880 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
1174
|
+
04:00:18:177 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1175
|
+
04:00:18:209 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
1176
|
+
04:00:18:381 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
1177
|
+
04:00:21:678 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1178
|
+
04:00:21:709 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
1179
|
+
04:00:21:724 1ba0 GPU 2 temp = 49, old fan speed = 62, new fan speed = 75
|
1180
|
+
04:00:21:818 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f4eab2", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1181
|
+
|
1182
|
+
04:00:22:099 22fc ETH: checking pool connection...
|
1183
|
+
04:00:22:099 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1184
|
+
|
1185
|
+
04:00:22:224 22fc got 243 bytes
|
1186
|
+
04:00:22:224 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x6d7b870b090e0ca0e70be88d2762630cbb880616ee2899b23fbd19773a1ce41f","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1187
|
+
|
1188
|
+
04:00:22:224 22fc parse packet: 242
|
1189
|
+
04:00:22:224 22fc ETH: job is the same
|
1190
|
+
04:00:22:240 22fc new buf size: 0
|
1191
|
+
04:00:23:303 22fc got 243 bytes
|
1192
|
+
04:00:23:303 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x2a9733211128c778e3d8a497f104cf64e3562f6445990fe426473033d1333f44","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1193
|
+
|
1194
|
+
04:00:23:303 22fc parse packet: 242
|
1195
|
+
04:00:23:303 22fc ETH: job changed
|
1196
|
+
04:00:23:318 22fc new buf size: 0
|
1197
|
+
04:00:23:318 22fc ETH: 01/19/18-04:00:23 - New job from eth-eu2.nanopool.org:9999
|
1198
|
+
04:00:23:318 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1199
|
+
04:00:23:334 22fc ETH - Total Speed: 83.150 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:06
|
1200
|
+
04:00:23:334 22fc ETH: GPU0 30.028 Mh/s, GPU1 23.128 Mh/s, GPU2 29.994 Mh/s
|
1201
|
+
04:00:23:334 22fc SC - Total Speed: 1080.950 Mh/s, Total Shares: 3, Rejected: 0
|
1202
|
+
04:00:23:350 22fc SC: GPU0 390.362 Mh/s, GPU1 300.661 Mh/s, GPU2 389.927 Mh/s
|
1203
|
+
04:00:25:021 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1204
|
+
04:00:25:053 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
1205
|
+
04:00:25:068 1ba0 GPU 2 temp = 49, old fan speed = 87, new fan speed = 75
|
1206
|
+
04:00:28:318 1758 got 299 bytes
|
1207
|
+
04:00:28:318 1758 buf: {"id":6,"jsonrpc":"2.0","params":["8","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a50000000000000000f918615a0000000014b585b444407e35e2a5b6ca91ef28caf5f8af1913395529d6ada15cc6546e24","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
1208
|
+
|
1209
|
+
04:00:28:318 1758 parse packet: 298
|
1210
|
+
04:00:28:318 1758 sc: job changed(2)
|
1211
|
+
04:00:28:334 1758 new buf size: 0
|
1212
|
+
04:00:28:334 1758 SC: 01/19/18-04:00:28 - New job from sia-eu2.nanopool.org:7777
|
1213
|
+
04:00:28:334 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
1214
|
+
04:00:28:365 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1215
|
+
04:00:28:397 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1216
|
+
04:00:28:412 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
1217
|
+
04:00:31:100 22fc got 243 bytes
|
1218
|
+
04:00:31:100 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x4db99c483d5763b29ea7a412a39000e4e3e52bff8cc13df657c6b7b718dc35f4","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1219
|
+
|
1220
|
+
04:00:31:100 22fc parse packet: 242
|
1221
|
+
04:00:31:100 22fc ETH: job changed
|
1222
|
+
04:00:31:115 22fc new buf size: 0
|
1223
|
+
04:00:31:115 22fc ETH: 01/19/18-04:00:31 - New job from eth-eu2.nanopool.org:9999
|
1224
|
+
04:00:31:115 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1225
|
+
04:00:31:131 22fc ETH - Total Speed: 83.181 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:06
|
1226
|
+
04:00:31:131 22fc ETH: GPU0 30.024 Mh/s, GPU1 23.147 Mh/s, GPU2 30.009 Mh/s
|
1227
|
+
04:00:31:131 22fc SC - Total Speed: 1081.346 Mh/s, Total Shares: 3, Rejected: 0
|
1228
|
+
04:00:31:147 22fc SC: GPU0 390.313 Mh/s, GPU1 300.913 Mh/s, GPU2 390.120 Mh/s
|
1229
|
+
04:00:31:709 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1230
|
+
04:00:31:741 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1231
|
+
04:00:31:756 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
1232
|
+
04:00:32:116 22fc ETH: checking pool connection...
|
1233
|
+
04:00:32:116 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1234
|
+
|
1235
|
+
04:00:32:241 22fc got 243 bytes
|
1236
|
+
04:00:32:241 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x4db99c483d5763b29ea7a412a39000e4e3e52bff8cc13df657c6b7b718dc35f4","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1237
|
+
|
1238
|
+
04:00:32:241 22fc parse packet: 242
|
1239
|
+
04:00:32:241 22fc ETH: job is the same
|
1240
|
+
04:00:32:256 22fc new buf size: 0
|
1241
|
+
04:00:35:069 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1242
|
+
04:00:35:256 1ba0 GPU 1 temp = 45, old fan speed = 0, new fan speed = 75
|
1243
|
+
04:00:35:272 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
1244
|
+
04:00:35:459 1ba0 GPU0 t=47C fan=83%, GPU1 t=45C fan=0%, GPU2 t=47C fan=87%
|
1245
|
+
04:00:35:459 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 47,
|
1246
|
+
04:00:35:459 1ba0 watchdog - thread 0 (gpu0), hb time 63
|
1247
|
+
04:00:35:459 1ba0 watchdog - thread 1 (gpu0), hb time 125
|
1248
|
+
04:00:35:475 1ba0 watchdog - thread 2 (gpu1), hb time 125
|
1249
|
+
04:00:35:475 1ba0 watchdog - thread 3 (gpu1), hb time 31
|
1250
|
+
04:00:35:475 1ba0 watchdog - thread 4 (gpu2), hb time 47
|
1251
|
+
04:00:35:491 1ba0 watchdog - thread 5 (gpu2), hb time 141
|
1252
|
+
04:00:38:772 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1253
|
+
04:00:38:960 1ba0 GPU 1 temp = 46, old fan speed = 0, new fan speed = 75
|
1254
|
+
04:00:38:991 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1255
|
+
04:00:41:835 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f5fac6", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1256
|
+
|
1257
|
+
04:00:42:132 22fc ETH: checking pool connection...
|
1258
|
+
04:00:42:132 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1259
|
+
|
1260
|
+
04:00:42:257 22fc got 243 bytes
|
1261
|
+
04:00:42:257 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x4db99c483d5763b29ea7a412a39000e4e3e52bff8cc13df657c6b7b718dc35f4","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1262
|
+
|
1263
|
+
04:00:42:257 22fc parse packet: 242
|
1264
|
+
04:00:42:257 22fc ETH: job is the same
|
1265
|
+
04:00:42:272 22fc new buf size: 0
|
1266
|
+
04:00:42:303 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1267
|
+
04:00:42:491 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
1268
|
+
04:00:42:507 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1269
|
+
04:00:42:647 22fc got 243 bytes
|
1270
|
+
04:00:42:647 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xa01e082e890c1e759296eaee2b4cc0c58aab215c0c4dc3df73719e3f7051fbb2","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1271
|
+
|
1272
|
+
04:00:42:647 22fc parse packet: 242
|
1273
|
+
04:00:42:647 22fc ETH: job changed
|
1274
|
+
04:00:42:663 22fc new buf size: 0
|
1275
|
+
04:00:42:663 22fc ETH: 01/19/18-04:00:42 - New job from eth-eu2.nanopool.org:9999
|
1276
|
+
04:00:42:663 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1277
|
+
04:00:42:678 22fc ETH - Total Speed: 83.221 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:06
|
1278
|
+
04:00:42:678 22fc ETH: GPU0 30.022 Mh/s, GPU1 23.136 Mh/s, GPU2 30.063 Mh/s
|
1279
|
+
04:00:42:678 22fc SC - Total Speed: 1081.867 Mh/s, Total Shares: 3, Rejected: 0
|
1280
|
+
04:00:42:694 22fc SC: GPU0 390.285 Mh/s, GPU1 300.762 Mh/s, GPU2 390.820 Mh/s
|
1281
|
+
04:00:45:179 24a0 SC: put share nonce 2c5434e enonce 250602c3
|
1282
|
+
04:00:45:179 24a0 SC round found 1 shares
|
1283
|
+
04:00:45:194 1758 SC: 01/19/18-04:00:45 - SHARE FOUND - (GPU 2)
|
1284
|
+
|
1285
|
+
04:00:45:335 1758 got 39 bytes
|
1286
|
+
04:00:45:335 1758 buf: {"jsonrpc":"2.0","id":4,"result":true}
|
1287
|
+
|
1288
|
+
04:00:45:335 1758 parse packet: 38
|
1289
|
+
04:00:45:335 1758 SC: Share accepted (141 ms)!
|
1290
|
+
04:00:45:350 1758 new buf size: 0
|
1291
|
+
04:00:45:804 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1292
|
+
04:00:45:835 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
1293
|
+
04:00:45:850 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1294
|
+
04:00:47:257 22fc got 243 bytes
|
1295
|
+
04:00:47:257 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x9ab4016e87fb9633bf8e7fb0515cecf8ae07c3b755dba1fc1fb1582208aa67e8","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1296
|
+
|
1297
|
+
04:00:47:257 22fc parse packet: 242
|
1298
|
+
04:00:47:257 22fc ETH: job changed
|
1299
|
+
04:00:47:272 22fc new buf size: 0
|
1300
|
+
04:00:47:272 22fc ETH: 01/19/18-04:00:47 - New job from eth-eu2.nanopool.org:9999
|
1301
|
+
04:00:47:272 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1302
|
+
04:00:47:288 22fc ETH - Total Speed: 83.083 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:06
|
1303
|
+
04:00:47:288 22fc ETH: GPU0 29.981 Mh/s, GPU1 23.120 Mh/s, GPU2 29.982 Mh/s
|
1304
|
+
04:00:47:288 22fc SC - Total Speed: 1080.073 Mh/s, Total Shares: 4, Rejected: 0
|
1305
|
+
04:00:47:304 22fc SC: GPU0 389.757 Mh/s, GPU1 300.553 Mh/s, GPU2 389.763 Mh/s
|
1306
|
+
04:00:49:147 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1307
|
+
04:00:49:194 1ba0 GPU 1 temp = 49, old fan speed = 86, new fan speed = 75
|
1308
|
+
04:00:49:210 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1309
|
+
04:00:52:148 22fc ETH: checking pool connection...
|
1310
|
+
04:00:52:148 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1311
|
+
|
1312
|
+
04:00:52:273 22fc got 243 bytes
|
1313
|
+
04:00:52:273 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x9ab4016e87fb9633bf8e7fb0515cecf8ae07c3b755dba1fc1fb1582208aa67e8","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1314
|
+
|
1315
|
+
04:00:52:273 22fc parse packet: 242
|
1316
|
+
04:00:52:273 22fc ETH: job is the same
|
1317
|
+
04:00:52:288 22fc new buf size: 0
|
1318
|
+
04:00:52:523 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1319
|
+
04:00:52:570 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
1320
|
+
04:00:52:585 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1321
|
+
04:00:53:320 22fc got 243 bytes
|
1322
|
+
04:00:53:320 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x19800d1d4715466be0095fd07dbb913914942a2f6b494b1bd2318cf13c53d8fd","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1323
|
+
|
1324
|
+
04:00:53:320 22fc parse packet: 242
|
1325
|
+
04:00:53:320 22fc ETH: job changed
|
1326
|
+
04:00:53:335 22fc new buf size: 0
|
1327
|
+
04:00:53:335 22fc ETH: 01/19/18-04:00:53 - New job from eth-eu2.nanopool.org:9999
|
1328
|
+
04:00:53:335 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1329
|
+
04:00:53:351 22fc ETH - Total Speed: 83.128 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:06
|
1330
|
+
04:00:53:351 22fc ETH: GPU0 29.980 Mh/s, GPU1 23.123 Mh/s, GPU2 30.025 Mh/s
|
1331
|
+
04:00:53:351 22fc SC - Total Speed: 1080.657 Mh/s, Total Shares: 4, Rejected: 0
|
1332
|
+
04:00:53:366 22fc SC: GPU0 389.741 Mh/s, GPU1 300.592 Mh/s, GPU2 390.324 Mh/s
|
1333
|
+
04:00:55:898 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1334
|
+
04:00:55:929 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
1335
|
+
04:00:55:945 1ba0 GPU 2 temp = 44, old fan speed = 87, new fan speed = 75
|
1336
|
+
04:00:59:242 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
1337
|
+
04:00:59:273 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
1338
|
+
04:00:59:445 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
1339
|
+
04:00:59:789 22fc got 243 bytes
|
1340
|
+
04:00:59:789 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xeb26f0a6ebddceaf869b04b6adc3110a5bf3bd8a8e6745539f7f43749daf3aa5","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1341
|
+
|
1342
|
+
04:00:59:789 22fc parse packet: 242
|
1343
|
+
04:00:59:789 22fc ETH: job changed
|
1344
|
+
04:00:59:804 22fc new buf size: 0
|
1345
|
+
04:00:59:804 22fc ETH: 01/19/18-04:00:59 - New job from eth-eu2.nanopool.org:9999
|
1346
|
+
04:00:59:804 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1347
|
+
04:00:59:820 22fc ETH - Total Speed: 83.106 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:06
|
1348
|
+
04:00:59:820 22fc ETH: GPU0 29.924 Mh/s, GPU1 23.133 Mh/s, GPU2 30.049 Mh/s
|
1349
|
+
04:00:59:820 22fc SC - Total Speed: 1080.375 Mh/s, Total Shares: 4, Rejected: 0
|
1350
|
+
04:00:59:835 22fc SC: GPU0 389.011 Mh/s, GPU1 300.726 Mh/s, GPU2 390.638 Mh/s
|
1351
|
+
04:01:01:851 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f617b6", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1352
|
+
|
1353
|
+
04:01:02:164 22fc ETH: checking pool connection...
|
1354
|
+
04:01:02:164 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1355
|
+
|
1356
|
+
04:01:02:289 22fc got 243 bytes
|
1357
|
+
04:01:02:289 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xeb26f0a6ebddceaf869b04b6adc3110a5bf3bd8a8e6745539f7f43749daf3aa5","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1358
|
+
|
1359
|
+
04:01:02:289 22fc parse packet: 242
|
1360
|
+
04:01:02:289 22fc ETH: job is the same
|
1361
|
+
04:01:02:304 22fc new buf size: 0
|
1362
|
+
04:01:02:757 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1363
|
+
04:01:02:804 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
1364
|
+
04:01:02:976 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
1365
|
+
04:01:06:289 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1366
|
+
04:01:06:320 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
1367
|
+
04:01:06:492 1ba0 GPU 2 temp = 47, old fan speed = 0, new fan speed = 75
|
1368
|
+
04:01:09:805 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1369
|
+
04:01:09:836 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
1370
|
+
04:01:10:008 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
1371
|
+
04:01:10:195 1ba0 GPU0 t=47C fan=82%, GPU1 t=46C fan=86%, GPU2 t=48C fan=0%
|
1372
|
+
04:01:10:195 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 0,
|
1373
|
+
04:01:10:195 1ba0 watchdog - thread 0 (gpu0), hb time 63
|
1374
|
+
04:01:10:211 1ba0 watchdog - thread 1 (gpu0), hb time 16
|
1375
|
+
04:01:10:211 1ba0 watchdog - thread 2 (gpu1), hb time 172
|
1376
|
+
04:01:10:211 1ba0 watchdog - thread 3 (gpu1), hb time 79
|
1377
|
+
04:01:10:211 1ba0 watchdog - thread 4 (gpu2), hb time 63
|
1378
|
+
04:01:10:226 1ba0 watchdog - thread 5 (gpu2), hb time 15
|
1379
|
+
04:01:12:180 22fc ETH: checking pool connection...
|
1380
|
+
04:01:12:180 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1381
|
+
|
1382
|
+
04:01:12:305 22fc got 243 bytes
|
1383
|
+
04:01:12:305 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xeb26f0a6ebddceaf869b04b6adc3110a5bf3bd8a8e6745539f7f43749daf3aa5","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1384
|
+
|
1385
|
+
04:01:12:305 22fc parse packet: 242
|
1386
|
+
04:01:12:305 22fc ETH: job is the same
|
1387
|
+
04:01:12:320 22fc new buf size: 0
|
1388
|
+
04:01:13:523 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1389
|
+
04:01:13:539 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1390
|
+
04:01:13:555 1ba0 GPU 2 temp = 49, old fan speed = 86, new fan speed = 75
|
1391
|
+
04:01:16:852 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1392
|
+
04:01:16:883 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1393
|
+
04:01:16:914 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
1394
|
+
04:01:18:477 22fc got 243 bytes
|
1395
|
+
04:01:18:477 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x61691e8e6718177456016762d4eced57bca5ced659eae755c98605303ad52a27","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1396
|
+
|
1397
|
+
04:01:18:477 22fc parse packet: 242
|
1398
|
+
04:01:18:477 22fc ETH: job changed
|
1399
|
+
04:01:18:492 22fc new buf size: 0
|
1400
|
+
04:01:18:492 22fc ETH: 01/19/18-04:01:18 - New job from eth-eu2.nanopool.org:9999
|
1401
|
+
04:01:18:492 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1402
|
+
04:01:18:508 22fc ETH - Total Speed: 80.057 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:06
|
1403
|
+
04:01:18:508 22fc ETH: GPU0 29.747 Mh/s, GPU1 23.129 Mh/s, GPU2 27.182 Mh/s
|
1404
|
+
04:01:18:508 22fc SC - Total Speed: 1040.743 Mh/s, Total Shares: 4, Rejected: 0
|
1405
|
+
04:01:18:524 22fc SC: GPU0 386.705 Mh/s, GPU1 300.671 Mh/s, GPU2 353.367 Mh/s
|
1406
|
+
04:01:20:227 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1407
|
+
04:01:20:258 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
1408
|
+
04:01:20:274 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
1409
|
+
04:01:21:868 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f5455e", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1410
|
+
|
1411
|
+
04:01:22:196 22fc ETH: checking pool connection...
|
1412
|
+
04:01:22:196 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1413
|
+
|
1414
|
+
04:01:22:336 22fc got 243 bytes
|
1415
|
+
04:01:22:336 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x61691e8e6718177456016762d4eced57bca5ced659eae755c98605303ad52a27","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1416
|
+
|
1417
|
+
04:01:22:336 22fc parse packet: 242
|
1418
|
+
04:01:22:336 22fc ETH: job is the same
|
1419
|
+
04:01:22:352 22fc new buf size: 0
|
1420
|
+
04:01:23:571 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1421
|
+
04:01:23:602 1ba0 GPU 1 temp = 45, old fan speed = 87, new fan speed = 75
|
1422
|
+
04:01:23:618 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
1423
|
+
04:01:26:915 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1424
|
+
04:01:26:946 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1425
|
+
04:01:26:962 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1426
|
+
04:01:28:305 1758 got 299 bytes
|
1427
|
+
04:01:28:305 1758 buf: {"id":6,"jsonrpc":"2.0","params":["9","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000003519615a00000000ff4ada713c01fc696712e55d8a182c3f23b53e1dcea155d12406ce84b923b28e","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
1428
|
+
|
1429
|
+
04:01:28:305 1758 parse packet: 298
|
1430
|
+
04:01:28:305 1758 sc: job changed(2)
|
1431
|
+
04:01:28:321 1758 new buf size: 0
|
1432
|
+
04:01:28:321 1758 SC: 01/19/18-04:01:28 - New job from sia-eu2.nanopool.org:7777
|
1433
|
+
04:01:28:321 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
1434
|
+
04:01:29:540 22fc got 243 bytes
|
1435
|
+
04:01:29:540 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x4501d2fa023b5de3469cb6117ccd2d2edd3c1579c74135d8172920338ecfab36","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1436
|
+
|
1437
|
+
04:01:29:540 22fc parse packet: 242
|
1438
|
+
04:01:29:540 22fc ETH: job changed
|
1439
|
+
04:01:29:555 22fc new buf size: 0
|
1440
|
+
04:01:29:555 22fc ETH: 01/19/18-04:01:29 - New job from eth-eu2.nanopool.org:9999
|
1441
|
+
04:01:29:555 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1442
|
+
04:01:29:571 22fc ETH - Total Speed: 83.127 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:07
|
1443
|
+
04:01:29:571 22fc ETH: GPU0 29.998 Mh/s, GPU1 23.130 Mh/s, GPU2 29.999 Mh/s
|
1444
|
+
04:01:29:571 22fc SC - Total Speed: 1080.649 Mh/s, Total Shares: 4, Rejected: 0
|
1445
|
+
04:01:29:587 22fc SC: GPU0 389.977 Mh/s, GPU1 300.690 Mh/s, GPU2 389.982 Mh/s
|
1446
|
+
04:01:30:274 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1447
|
+
04:01:30:321 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1448
|
+
04:01:30:337 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1449
|
+
04:01:32:227 22fc ETH: checking pool connection...
|
1450
|
+
04:01:32:227 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1451
|
+
|
1452
|
+
04:01:32:352 22fc got 243 bytes
|
1453
|
+
04:01:32:352 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x4501d2fa023b5de3469cb6117ccd2d2edd3c1579c74135d8172920338ecfab36","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1454
|
+
|
1455
|
+
04:01:32:352 22fc parse packet: 242
|
1456
|
+
04:01:32:352 22fc ETH: job is the same
|
1457
|
+
04:01:32:368 22fc new buf size: 0
|
1458
|
+
04:01:33:634 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1459
|
+
04:01:33:821 1ba0 GPU 1 temp = 44, old fan speed = 0, new fan speed = 75
|
1460
|
+
04:01:33:837 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1461
|
+
04:01:37:149 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1462
|
+
04:01:37:337 1ba0 GPU 1 temp = 45, old fan speed = 0, new fan speed = 75
|
1463
|
+
04:01:37:353 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1464
|
+
04:01:40:650 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1465
|
+
04:01:40:837 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
1466
|
+
04:01:40:853 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1467
|
+
04:01:41:884 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f596bf", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1468
|
+
|
1469
|
+
04:01:42:243 22fc ETH: checking pool connection...
|
1470
|
+
04:01:42:243 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1471
|
+
|
1472
|
+
04:01:42:368 22fc got 243 bytes
|
1473
|
+
04:01:42:368 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x4501d2fa023b5de3469cb6117ccd2d2edd3c1579c74135d8172920338ecfab36","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1474
|
+
|
1475
|
+
04:01:42:368 22fc parse packet: 242
|
1476
|
+
04:01:42:368 22fc ETH: job is the same
|
1477
|
+
04:01:42:384 22fc new buf size: 0
|
1478
|
+
04:01:44:150 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1479
|
+
04:01:44:337 1ba0 GPU 1 temp = 48, old fan speed = 0, new fan speed = 75
|
1480
|
+
04:01:44:353 1ba0 GPU 2 temp = 44, old fan speed = 87, new fan speed = 75
|
1481
|
+
04:01:44:540 1ba0 GPU0 t=48C fan=83%, GPU1 t=48C fan=0%, GPU2 t=45C fan=87%
|
1482
|
+
04:01:44:540 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 0,
|
1483
|
+
04:01:44:540 1ba0 watchdog - thread 0 (gpu0), hb time 110
|
1484
|
+
04:01:44:540 1ba0 watchdog - thread 1 (gpu0), hb time 47
|
1485
|
+
04:01:44:556 1ba0 watchdog - thread 2 (gpu1), hb time 47
|
1486
|
+
04:01:44:556 1ba0 watchdog - thread 3 (gpu1), hb time 140
|
1487
|
+
04:01:44:556 1ba0 watchdog - thread 4 (gpu2), hb time 125
|
1488
|
+
04:01:44:572 1ba0 watchdog - thread 5 (gpu2), hb time 78
|
1489
|
+
04:01:44:962 22fc got 243 bytes
|
1490
|
+
04:01:44:962 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xae8037c2b007869fd841994be73caaca0dcc20d74e233210fb54c58ae49afb8f","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1491
|
+
|
1492
|
+
04:01:44:962 22fc parse packet: 242
|
1493
|
+
04:01:44:962 22fc ETH: job changed
|
1494
|
+
04:01:44:978 22fc new buf size: 0
|
1495
|
+
04:01:44:978 22fc ETH: 01/19/18-04:01:44 - New job from eth-eu2.nanopool.org:9999
|
1496
|
+
04:01:44:978 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1497
|
+
04:01:44:994 22fc ETH - Total Speed: 83.199 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:07
|
1498
|
+
04:01:44:994 22fc ETH: GPU0 30.023 Mh/s, GPU1 23.148 Mh/s, GPU2 30.027 Mh/s
|
1499
|
+
04:01:44:994 22fc SC - Total Speed: 1081.582 Mh/s, Total Shares: 4, Rejected: 0
|
1500
|
+
04:01:45:009 22fc SC: GPU0 390.302 Mh/s, GPU1 300.923 Mh/s, GPU2 390.357 Mh/s
|
1501
|
+
04:01:47:853 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1502
|
+
04:01:47:884 1ba0 GPU 1 temp = 49, old fan speed = 76, new fan speed = 75
|
1503
|
+
04:01:48:056 1ba0 GPU 2 temp = 44, old fan speed = 0, new fan speed = 75
|
1504
|
+
04:01:51:369 1ba0 GPU 0 temp = 48, old fan speed = 82, new fan speed = 75
|
1505
|
+
04:01:51:416 1ba0 GPU 1 temp = 49, old fan speed = 86, new fan speed = 75
|
1506
|
+
04:01:51:588 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
1507
|
+
04:01:52:259 22fc ETH: checking pool connection...
|
1508
|
+
04:01:52:259 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1509
|
+
|
1510
|
+
04:01:52:384 22fc got 243 bytes
|
1511
|
+
04:01:52:384 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0xae8037c2b007869fd841994be73caaca0dcc20d74e233210fb54c58ae49afb8f","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1512
|
+
|
1513
|
+
04:01:52:384 22fc parse packet: 242
|
1514
|
+
04:01:52:384 22fc ETH: job is the same
|
1515
|
+
04:01:52:400 22fc new buf size: 0
|
1516
|
+
04:01:54:900 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1517
|
+
04:01:54:931 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
1518
|
+
04:01:55:103 1ba0 GPU 2 temp = 47, old fan speed = 0, new fan speed = 75
|
1519
|
+
04:01:58:432 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1520
|
+
04:01:58:463 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
1521
|
+
04:01:58:635 1ba0 GPU 2 temp = 48, old fan speed = 0, new fan speed = 75
|
1522
|
+
04:01:58:682 22fc got 243 bytes
|
1523
|
+
04:01:58:682 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x08f8ff52b549317406514d29514526da22bfec5b4121adcd6bd1ffb57a542168","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1524
|
+
|
1525
|
+
04:01:58:682 22fc parse packet: 242
|
1526
|
+
04:01:58:682 22fc ETH: job changed
|
1527
|
+
04:01:58:697 22fc new buf size: 0
|
1528
|
+
04:01:58:697 22fc ETH: 01/19/18-04:01:58 - New job from eth-eu2.nanopool.org:9999
|
1529
|
+
04:01:58:697 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1530
|
+
04:01:58:713 22fc ETH - Total Speed: 82.084 Mh/s, Total Shares: 2, Rejected: 0, Time: 00:07
|
1531
|
+
04:01:58:713 22fc ETH: GPU0 29.455 Mh/s, GPU1 23.143 Mh/s, GPU2 29.485 Mh/s
|
1532
|
+
04:01:58:713 22fc SC - Total Speed: 1067.088 Mh/s, Total Shares: 4, Rejected: 0
|
1533
|
+
04:01:58:729 22fc SC: GPU0 382.920 Mh/s, GPU1 300.860 Mh/s, GPU2 383.308 Mh/s
|
1534
|
+
04:02:01:901 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f63cba", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1535
|
+
|
1536
|
+
04:02:01:932 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1537
|
+
04:02:01:947 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
1538
|
+
04:02:01:979 1ba0 GPU 2 temp = 49, old fan speed = 79, new fan speed = 75
|
1539
|
+
04:02:02:276 22fc ETH: checking pool connection...
|
1540
|
+
04:02:02:276 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1541
|
+
|
1542
|
+
04:02:02:401 22fc got 243 bytes
|
1543
|
+
04:02:02:401 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x08f8ff52b549317406514d29514526da22bfec5b4121adcd6bd1ffb57a542168","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1544
|
+
|
1545
|
+
04:02:02:401 22fc parse packet: 242
|
1546
|
+
04:02:02:401 22fc ETH: job is the same
|
1547
|
+
04:02:02:416 22fc new buf size: 0
|
1548
|
+
04:02:05:198 2534 ETH: put share nonce 1c39d1280b3eaaa9
|
1549
|
+
04:02:05:198 2534 ETH round found 1 shares
|
1550
|
+
04:02:05:213 22fc ETH: 01/19/18-04:02:05 - SHARE FOUND - (GPU 0)
|
1551
|
+
04:02:05:213 22fc send: {"id":4,"method":"eth_submitWork","params":["0x1c39d1280b3eaaa9","0x08f8ff52b549317406514d29514526da22bfec5b4121adcd6bd1ffb57a542168","0x19acbf50909d8630d90ce3b28ffd66da9efa59e03a18965d51400ccfd2aa8265"]}
|
1552
|
+
|
1553
|
+
04:02:05:291 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1554
|
+
04:02:05:323 1ba0 GPU 1 temp = 47, old fan speed = 87, new fan speed = 75
|
1555
|
+
04:02:05:338 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
1556
|
+
04:02:05:354 22fc got 39 bytes
|
1557
|
+
04:02:05:354 22fc buf: {"jsonrpc":"2.0","id":4,"result":true}
|
1558
|
+
|
1559
|
+
04:02:05:354 22fc parse packet: 38
|
1560
|
+
04:02:05:369 22fc ETH: Share accepted (140 ms)!
|
1561
|
+
04:02:05:369 22fc new buf size: 0
|
1562
|
+
04:02:08:651 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1563
|
+
04:02:08:682 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
1564
|
+
04:02:08:698 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
1565
|
+
04:02:11:995 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1566
|
+
04:02:12:026 1ba0 GPU 1 temp = 46, old fan speed = 86, new fan speed = 75
|
1567
|
+
04:02:12:042 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
1568
|
+
04:02:12:292 22fc ETH: checking pool connection...
|
1569
|
+
04:02:12:292 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1570
|
+
|
1571
|
+
04:02:12:417 22fc got 243 bytes
|
1572
|
+
04:02:12:417 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x08f8ff52b549317406514d29514526da22bfec5b4121adcd6bd1ffb57a542168","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1573
|
+
|
1574
|
+
04:02:12:417 22fc parse packet: 242
|
1575
|
+
04:02:12:417 22fc ETH: job is the same
|
1576
|
+
04:02:12:432 22fc new buf size: 0
|
1577
|
+
04:02:13:807 22fc got 243 bytes
|
1578
|
+
04:02:13:807 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x748aa1818d820bd63424569521e4010650c5580491a274294bfc4497dd843a32","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1579
|
+
|
1580
|
+
04:02:13:807 22fc parse packet: 242
|
1581
|
+
04:02:13:807 22fc ETH: job changed
|
1582
|
+
04:02:13:823 22fc new buf size: 0
|
1583
|
+
04:02:13:823 22fc ETH: 01/19/18-04:02:13 - New job from eth-eu2.nanopool.org:9999
|
1584
|
+
04:02:13:823 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1585
|
+
04:02:13:839 22fc ETH - Total Speed: 83.211 Mh/s, Total Shares: 3, Rejected: 0, Time: 00:07
|
1586
|
+
04:02:13:839 22fc ETH: GPU0 30.081 Mh/s, GPU1 23.138 Mh/s, GPU2 29.991 Mh/s
|
1587
|
+
04:02:13:839 22fc SC - Total Speed: 1081.745 Mh/s, Total Shares: 4, Rejected: 0
|
1588
|
+
04:02:13:854 22fc SC: GPU0 391.058 Mh/s, GPU1 300.798 Mh/s, GPU2 389.889 Mh/s
|
1589
|
+
04:02:15:339 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1590
|
+
04:02:15:385 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
1591
|
+
04:02:15:401 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1592
|
+
04:02:18:698 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1593
|
+
04:02:18:729 1ba0 GPU 1 temp = 46, old fan speed = 87, new fan speed = 75
|
1594
|
+
04:02:18:745 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1595
|
+
04:02:18:792 1ba0 GPU0 t=47C fan=83%, GPU1 t=46C fan=87%, GPU2 t=46C fan=87%
|
1596
|
+
04:02:18:792 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 16,
|
1597
|
+
04:02:18:792 1ba0 watchdog - thread 0 (gpu0), hb time 94
|
1598
|
+
04:02:18:792 1ba0 watchdog - thread 1 (gpu0), hb time 16
|
1599
|
+
04:02:18:807 1ba0 watchdog - thread 2 (gpu1), hb time 172
|
1600
|
+
04:02:18:807 1ba0 watchdog - thread 3 (gpu1), hb time 78
|
1601
|
+
04:02:18:807 1ba0 watchdog - thread 4 (gpu2), hb time 109
|
1602
|
+
04:02:18:823 1ba0 watchdog - thread 5 (gpu2), hb time 47
|
1603
|
+
04:02:21:917 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f481ce", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1604
|
+
|
1605
|
+
04:02:22:104 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1606
|
+
04:02:22:136 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1607
|
+
04:02:22:167 1ba0 GPU 2 temp = 46, old fan speed = 87, new fan speed = 75
|
1608
|
+
04:02:22:308 22fc ETH: checking pool connection...
|
1609
|
+
04:02:22:308 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1610
|
+
|
1611
|
+
04:02:22:433 22fc got 243 bytes
|
1612
|
+
04:02:22:433 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x748aa1818d820bd63424569521e4010650c5580491a274294bfc4497dd843a32","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1613
|
+
|
1614
|
+
04:02:22:433 22fc parse packet: 242
|
1615
|
+
04:02:22:433 22fc ETH: job is the same
|
1616
|
+
04:02:22:448 22fc new buf size: 0
|
1617
|
+
04:02:25:480 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1618
|
+
04:02:25:511 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1619
|
+
04:02:25:527 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1620
|
+
04:02:25:948 249c SC: put share nonce 2a08354 enonce a1fe097c
|
1621
|
+
04:02:25:964 249c SC round found 1 shares
|
1622
|
+
04:02:25:980 1758 SC: 01/19/18-04:02:25 - SHARE FOUND - (GPU 2)
|
1623
|
+
|
1624
|
+
04:02:26:120 1758 got 39 bytes
|
1625
|
+
04:02:26:120 1758 buf: {"jsonrpc":"2.0","id":4,"result":true}
|
1626
|
+
|
1627
|
+
04:02:26:120 1758 parse packet: 38
|
1628
|
+
04:02:26:120 1758 SC: Share accepted (141 ms)!
|
1629
|
+
04:02:26:136 1758 new buf size: 0
|
1630
|
+
04:02:28:855 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1631
|
+
04:02:28:886 22fc got 243 bytes
|
1632
|
+
04:02:28:886 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x5259db0518a6edcb79905c193bc6d8ab43b104d4dc3b9332e66b753b0dc92bc3","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1633
|
+
|
1634
|
+
04:02:28:886 22fc parse packet: 242
|
1635
|
+
04:02:28:886 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1636
|
+
04:02:28:886 22fc ETH: job changed
|
1637
|
+
04:02:28:902 22fc new buf size: 0
|
1638
|
+
04:02:28:902 22fc ETH: 01/19/18-04:02:28 - New job from eth-eu2.nanopool.org:9999
|
1639
|
+
04:02:28:917 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1640
|
+
04:02:28:917 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1641
|
+
04:02:28:917 22fc ETH - Total Speed: 83.105 Mh/s, Total Shares: 3, Rejected: 0, Time: 00:08
|
1642
|
+
04:02:28:933 22fc ETH: GPU0 30.005 Mh/s, GPU1 23.100 Mh/s, GPU2 30.000 Mh/s
|
1643
|
+
04:02:28:933 22fc SC - Total Speed: 1080.362 Mh/s, Total Shares: 5, Rejected: 0
|
1644
|
+
04:02:28:933 22fc SC: GPU0 390.059 Mh/s, GPU1 300.299 Mh/s, GPU2 390.004 Mh/s
|
1645
|
+
04:02:31:683 1758 got 300 bytes
|
1646
|
+
04:02:31:683 1758 buf: {"id":6,"jsonrpc":"2.0","params":["10","0x000000000000000c207a1b47398e500fcd1a5432beb7b956d393ff0e683649a500000000000000007119615a00000000a56aa71cf286a23e01dd92a3012622c07876385ff4d7d931335da0fe0d3f150c","0x0000000007547ff5d321871ff4fb4f118b8d13a30a1ff7b317f3c5b20629578a"],"method":"mining.notify"}
|
1647
|
+
|
1648
|
+
04:02:31:683 1758 parse packet: 299
|
1649
|
+
04:02:31:683 1758 sc: job changed(2)
|
1650
|
+
04:02:31:699 1758 new buf size: 0
|
1651
|
+
04:02:31:699 1758 SC: 01/19/18-04:02:31 - New job from sia-eu2.nanopool.org:7777
|
1652
|
+
04:02:31:699 1758 target: 0x0000000007547ff5 (diff: 150GH)
|
1653
|
+
04:02:32:214 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1654
|
+
04:02:32:246 1ba0 GPU 1 temp = 45, old fan speed = 86, new fan speed = 75
|
1655
|
+
04:02:32:261 1ba0 GPU 2 temp = 45, old fan speed = 87, new fan speed = 75
|
1656
|
+
04:02:32:324 22fc ETH: checking pool connection...
|
1657
|
+
04:02:32:324 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1658
|
+
|
1659
|
+
04:02:32:449 22fc got 243 bytes
|
1660
|
+
04:02:32:449 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x5259db0518a6edcb79905c193bc6d8ab43b104d4dc3b9332e66b753b0dc92bc3","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1661
|
+
|
1662
|
+
04:02:32:449 22fc parse packet: 242
|
1663
|
+
04:02:32:449 22fc ETH: job is the same
|
1664
|
+
04:02:32:464 22fc new buf size: 0
|
1665
|
+
04:02:35:574 1ba0 GPU 0 temp = 48, old fan speed = 83, new fan speed = 75
|
1666
|
+
04:02:35:761 1ba0 GPU 1 temp = 44, old fan speed = 0, new fan speed = 75
|
1667
|
+
04:02:35:777 1ba0 GPU 2 temp = 44, old fan speed = 87, new fan speed = 75
|
1668
|
+
04:02:39:090 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1669
|
+
04:02:39:277 1ba0 GPU 1 temp = 45, old fan speed = 0, new fan speed = 75
|
1670
|
+
04:02:39:465 1ba0 GPU 2 temp = 45, old fan speed = 0, new fan speed = 75
|
1671
|
+
04:02:41:512 24a0 ETH: put share nonce 5a91afb015dc8aea
|
1672
|
+
04:02:41:512 24a0 ETH round found 1 shares
|
1673
|
+
04:02:41:527 22fc ETH: 01/19/18-04:02:41 - SHARE FOUND - (GPU 2)
|
1674
|
+
04:02:41:527 22fc send: {"id":4,"method":"eth_submitWork","params":["0x5a91afb015dc8aea","0x5259db0518a6edcb79905c193bc6d8ab43b104d4dc3b9332e66b753b0dc92bc3","0xc8b974d288cb0b9db75fdf97ad6f0d50451e823eb28030731c3112c6374e518c"]}
|
1675
|
+
|
1676
|
+
04:02:41:683 22fc got 39 bytes
|
1677
|
+
04:02:41:683 22fc buf: {"jsonrpc":"2.0","id":4,"result":true}
|
1678
|
+
|
1679
|
+
04:02:41:683 22fc parse packet: 38
|
1680
|
+
04:02:41:683 22fc ETH: Share accepted (156 ms)!
|
1681
|
+
04:02:41:699 22fc new buf size: 0
|
1682
|
+
04:02:41:933 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4f5946a", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1683
|
+
|
1684
|
+
04:02:42:340 22fc ETH: checking pool connection...
|
1685
|
+
04:02:42:340 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1686
|
+
|
1687
|
+
04:02:42:465 22fc got 243 bytes
|
1688
|
+
04:02:42:465 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x5259db0518a6edcb79905c193bc6d8ab43b104d4dc3b9332e66b753b0dc92bc3","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1689
|
+
|
1690
|
+
04:02:42:465 22fc parse packet: 242
|
1691
|
+
04:02:42:465 22fc ETH: job is the same
|
1692
|
+
04:02:42:480 22fc new buf size: 0
|
1693
|
+
04:02:42:762 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1694
|
+
04:02:42:965 1ba0 GPU 1 temp = 47, old fan speed = 0, new fan speed = 75
|
1695
|
+
04:02:43:137 1ba0 GPU 2 temp = 46, old fan speed = 0, new fan speed = 75
|
1696
|
+
04:02:46:434 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1697
|
+
04:02:46:621 1ba0 GPU 1 temp = 48, old fan speed = 0, new fan speed = 75
|
1698
|
+
04:02:46:793 1ba0 GPU 2 temp = 47, old fan speed = 0, new fan speed = 75
|
1699
|
+
04:02:46:996 22fc got 243 bytes
|
1700
|
+
04:02:46:996 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x274e2a1f970c5f19d9dd3e24b9c2fdb0e8fbd30f8963df88b827cb654334d5a7","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1701
|
+
|
1702
|
+
04:02:46:996 22fc parse packet: 242
|
1703
|
+
04:02:46:996 22fc ETH: job changed
|
1704
|
+
04:02:47:012 22fc new buf size: 0
|
1705
|
+
04:02:47:012 22fc ETH: 01/19/18-04:02:47 - New job from eth-eu2.nanopool.org:9999
|
1706
|
+
04:02:47:012 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1707
|
+
04:02:47:027 22fc ETH - Total Speed: 83.164 Mh/s, Total Shares: 4, Rejected: 0, Time: 00:08
|
1708
|
+
04:02:47:027 22fc ETH: GPU0 30.005 Mh/s, GPU1 23.122 Mh/s, GPU2 30.038 Mh/s
|
1709
|
+
04:02:47:027 22fc SC - Total Speed: 1081.131 Mh/s, Total Shares: 5, Rejected: 0
|
1710
|
+
04:02:47:043 22fc SC: GPU0 390.059 Mh/s, GPU1 300.583 Mh/s, GPU2 390.489 Mh/s
|
1711
|
+
04:02:50:090 1ba0 GPU 0 temp = 47, old fan speed = 82, new fan speed = 75
|
1712
|
+
04:02:50:137 1ba0 GPU 1 temp = 49, old fan speed = 82, new fan speed = 75
|
1713
|
+
04:02:50:168 1ba0 GPU 2 temp = 49, old fan speed = 25, new fan speed = 75
|
1714
|
+
04:02:52:356 22fc ETH: checking pool connection...
|
1715
|
+
04:02:52:356 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|
1716
|
+
|
1717
|
+
04:02:52:481 22fc got 243 bytes
|
1718
|
+
04:02:52:481 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x274e2a1f970c5f19d9dd3e24b9c2fdb0e8fbd30f8963df88b827cb654334d5a7","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1719
|
+
|
1720
|
+
04:02:52:481 22fc parse packet: 242
|
1721
|
+
04:02:52:481 22fc ETH: job is the same
|
1722
|
+
04:02:52:496 22fc new buf size: 0
|
1723
|
+
04:02:53:465 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1724
|
+
04:02:53:496 1ba0 GPU 1 temp = 49, old fan speed = 87, new fan speed = 75
|
1725
|
+
04:02:53:512 1ba0 GPU 2 temp = 49, old fan speed = 87, new fan speed = 75
|
1726
|
+
04:02:53:543 1ba0 GPU0 t=47C fan=83%, GPU1 t=49C fan=87%, GPU2 t=49C fan=87%
|
1727
|
+
04:02:53:543 1ba0 em hbt: 0, dm hbt: 0, fm hbt: 94,
|
1728
|
+
04:02:53:543 1ba0 watchdog - thread 0 (gpu0), hb time 125
|
1729
|
+
04:02:53:559 1ba0 watchdog - thread 1 (gpu0), hb time 62
|
1730
|
+
04:02:53:559 1ba0 watchdog - thread 2 (gpu1), hb time 47
|
1731
|
+
04:02:53:559 1ba0 watchdog - thread 3 (gpu1), hb time 140
|
1732
|
+
04:02:53:575 1ba0 watchdog - thread 4 (gpu2), hb time 47
|
1733
|
+
04:02:53:575 1ba0 watchdog - thread 5 (gpu2), hb time 125
|
1734
|
+
04:02:55:809 22fc got 243 bytes
|
1735
|
+
04:02:55:809 22fc buf: {"jsonrpc":"2.0","id":0,"result":["0x22d5b44a0ff93be28bdc3bd49275c39301000332c48c3408ce783500b5a8d575","0xd5d85ca51867514082660716ef2bedbb55a65250622456390b4a76c4fe98db95","0x000000006df37f675ef6eadf5ab9a2072d44268d97df837e6748956e5c6c2116"]}
|
1736
|
+
|
1737
|
+
04:02:55:809 22fc parse packet: 242
|
1738
|
+
04:02:55:809 22fc ETH: job changed
|
1739
|
+
04:02:55:825 22fc new buf size: 0
|
1740
|
+
04:02:55:825 22fc ETH: 01/19/18-04:02:55 - New job from eth-eu2.nanopool.org:9999
|
1741
|
+
04:02:55:825 22fc target: 0x000000006df37f67 (diff: 10000MH), epoch 164(2.28GB)
|
1742
|
+
04:02:55:840 22fc ETH - Total Speed: 83.153 Mh/s, Total Shares: 4, Rejected: 0, Time: 00:08
|
1743
|
+
04:02:55:840 22fc ETH: GPU0 30.011 Mh/s, GPU1 23.128 Mh/s, GPU2 30.014 Mh/s
|
1744
|
+
04:02:55:840 22fc SC - Total Speed: 1080.983 Mh/s, Total Shares: 5, Rejected: 0
|
1745
|
+
04:02:55:856 22fc SC: GPU0 390.136 Mh/s, GPU1 300.661 Mh/s, GPU2 390.186 Mh/s
|
1746
|
+
04:02:56:872 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1747
|
+
04:02:56:918 1ba0 GPU 1 temp = 48, old fan speed = 86, new fan speed = 75
|
1748
|
+
04:02:56:934 1ba0 GPU 2 temp = 48, old fan speed = 87, new fan speed = 75
|
1749
|
+
04:03:00:231 1ba0 GPU 0 temp = 47, old fan speed = 83, new fan speed = 75
|
1750
|
+
04:03:00:262 1ba0 GPU 1 temp = 47, old fan speed = 86, new fan speed = 75
|
1751
|
+
04:03:00:294 1ba0 GPU 2 temp = 47, old fan speed = 87, new fan speed = 75
|
1752
|
+
04:03:01:950 22fc send: {"id":6,"jsonrpc":"2.0","method":"eth_submitHashrate","params":["0x4c95106", "0x0000000000000000000000000000000000000000000000000000000089b4008e"]}
|
1753
|
+
|
1754
|
+
04:03:02:372 22fc ETH: checking pool connection...
|
1755
|
+
04:03:02:372 22fc send: {"worker": "", "jsonrpc": "2.0", "params": [], "id": 3, "method": "eth_getWork"}
|