-
Notifications
You must be signed in to change notification settings - Fork 0
/
log1.log
3517 lines (3517 loc) · 493 KB
/
log1.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DEBUG[04-23|13:56:27] Reloaded keystore contents accounts=1
TRACE[04-23|13:56:27] Started watching keystore folder path=/home/linnea/nodes/node1/keystore
DEBUG[04-23|13:56:27] Reloaded keystore contents accounts=1
INFO [04-23|13:56:27] Starting peer-to-peer node instance=Geth/v1.6.0-stable-facc47cb/linux-amd64/go1.8.1
INFO [04-23|13:56:27] Allocated cache and file handles database=/home/linnea/nodes/node1/geth/chaindata cache=128 handles=1024
INFO [04-23|13:56:27] Initialised chain configuration config="{ChainID: 0 Homestead: <nil> DAO: <nil> DAOSupport: false EIP150: <nil> EIP155: <nil> EIP158: <nil> Engine: unknown}"
INFO [04-23|13:56:27] Disk storage enabled for ethash caches dir=/home/linnea/nodes/node1/geth/ethash count=3
INFO [04-23|13:56:27] Disk storage enabled for ethash DAGs dir=/home/linnea/.ethash count=2
INFO [04-23|13:56:27] Initialising Ethereum protocol versions="[63 62]" network=2017
INFO [04-23|13:56:27] Loaded most recent local header number=10511 hash=c11e16…ce8ff3 td=14873540178
INFO [04-23|13:56:27] Loaded most recent local full block number=10511 hash=c11e16…ce8ff3 td=14873540178
INFO [04-23|13:56:27] Loaded most recent local fast block number=10511 hash=c11e16…ce8ff3 td=14873540178
WARN [04-23|13:56:27] Blockchain not empty, fast sync disabled
DEBUG[04-23|13:56:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
INFO [04-23|13:56:27] Starting P2P networking
INFO [04-23|13:56:27] RLPx listener up self="enode://b2d5c6a12e3c2275963719fd6ea8940899b90b196d49406033a1b1d5d5d6fbd8a79d3428c98b9fe593768f0e30971c1f11d63a7613e99d84bf562f29f80db5a4@[::]:30303?discport=0"
DEBUG[04-23|13:56:27] InProc registered *node.PrivateAdminAPI under 'admin'
DEBUG[04-23|13:56:27] InProc registered *node.PublicAdminAPI under 'admin'
DEBUG[04-23|13:56:27] InProc registered *debug.HandlerT under 'debug'
DEBUG[04-23|13:56:27] InProc registered *node.PublicDebugAPI under 'debug'
DEBUG[04-23|13:56:27] InProc registered *node.PublicWeb3API under 'web3'
DEBUG[04-23|13:56:27] InProc registered *ethapi.PublicEthereumAPI under 'eth'
TRACE[04-23|13:56:27] New dial task task="staticdial 63b4cb07ec10e133 :::30306"
DEBUG[04-23|13:56:27] InProc registered *ethapi.PublicBlockChainAPI under 'eth'
TRACE[04-23|13:56:27] New dial task task="staticdial 54308f6a94d66bad :::30305"
TRACE[04-23|13:56:27] Dial error task="staticdial 63b4cb07ec10e133 :::30306" err="dial tcp [::]:30306: getsockopt: connection refused"
DEBUG[04-23|13:56:27] InProc registered *ethapi.PublicTransactionPoolAPI under 'eth'
TRACE[04-23|13:56:27] Dial error task="staticdial 54308f6a94d66bad :::30305" err="dial tcp [::]:30305: getsockopt: connection refused"
DEBUG[04-23|13:56:27] Can't resolve node id=54308f6a94d66bad err="discovery is disabled"
TRACE[04-23|13:56:27] Dial task done task="staticdial 54308f6a94d66bad :::30305"
DEBUG[04-23|13:56:27] InProc registered *ethapi.PublicTxPoolAPI under 'txpool'
DEBUG[04-23|13:56:27] InProc registered *ethapi.PublicDebugAPI under 'debug'
DEBUG[04-23|13:56:27] InProc registered *ethapi.PrivateDebugAPI under 'debug'
DEBUG[04-23|13:56:27] InProc registered *ethapi.PublicAccountAPI under 'eth'
DEBUG[04-23|13:56:27] Can't resolve node id=63b4cb07ec10e133 err="discovery is disabled"
TRACE[04-23|13:56:27] Dial task done task="staticdial 63b4cb07ec10e133 :::30306"
DEBUG[04-23|13:56:27] InProc registered *ethapi.PrivateAccountAPI under 'personal'
TRACE[04-23|13:56:27] New dial task task="wait for dial hist expire (29.999881904s)"
DEBUG[04-23|13:56:27] InProc registered *eth.PublicEthereumAPI under 'eth'
DEBUG[04-23|13:56:27] InProc registered *eth.PublicMinerAPI under 'eth'
DEBUG[04-23|13:56:27] InProc registered *downloader.PublicDownloaderAPI under 'eth'
DEBUG[04-23|13:56:27] InProc registered *eth.PrivateMinerAPI under 'miner'
DEBUG[04-23|13:56:27] InProc registered *filters.PublicFilterAPI under 'eth'
DEBUG[04-23|13:56:27] InProc registered *eth.PrivateAdminAPI under 'admin'
DEBUG[04-23|13:56:27] InProc registered *eth.PublicDebugAPI under 'debug'
DEBUG[04-23|13:56:27] Executing EVM call finished runtime=284.026µs
DEBUG[04-23|13:56:27] InProc registered *eth.PrivateDebugAPI under 'debug'
DEBUG[04-23|13:56:27] InProc registered *ethapi.PublicNetAPI under 'net'
DEBUG[04-23|13:56:27] Release oracle not found contract=0xfa7b9770ca4cb04296cac84f37736d4041251cdf
DEBUG[04-23|13:56:27] IPC registered *node.PrivateAdminAPI under 'admin'
DEBUG[04-23|13:56:27] IPC registered *node.PublicAdminAPI under 'admin'
DEBUG[04-23|13:56:27] IPC registered *debug.HandlerT under 'debug'
DEBUG[04-23|13:56:27] IPC registered *node.PublicDebugAPI under 'debug'
DEBUG[04-23|13:56:27] IPC registered *node.PublicWeb3API under 'web3'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PublicEthereumAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PublicBlockChainAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PublicTransactionPoolAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PublicTxPoolAPI under 'txpool'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PublicDebugAPI under 'debug'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PrivateDebugAPI under 'debug'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PublicAccountAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PrivateAccountAPI under 'personal'
DEBUG[04-23|13:56:27] IPC registered *eth.PublicEthereumAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *eth.PublicMinerAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *downloader.PublicDownloaderAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *eth.PrivateMinerAPI under 'miner'
DEBUG[04-23|13:56:27] IPC registered *filters.PublicFilterAPI under 'eth'
DEBUG[04-23|13:56:27] IPC registered *eth.PrivateAdminAPI under 'admin'
DEBUG[04-23|13:56:27] IPC registered *eth.PublicDebugAPI under 'debug'
DEBUG[04-23|13:56:27] IPC registered *eth.PrivateDebugAPI under 'debug'
DEBUG[04-23|13:56:27] IPC registered *ethapi.PublicNetAPI under 'net'
DEBUG[04-23|13:56:27] HTTP registered *node.PublicWeb3API under 'web3'
DEBUG[04-23|13:56:27] HTTP registered *ethapi.PublicEthereumAPI under 'eth'
INFO [04-23|13:56:27] IPC endpoint opened: /home/linnea/nodes/node1/geth.ipc
DEBUG[04-23|13:56:27] HTTP registered *ethapi.PublicBlockChainAPI under 'eth'
DEBUG[04-23|13:56:27] HTTP registered *ethapi.PublicTransactionPoolAPI under 'eth'
DEBUG[04-23|13:56:27] HTTP registered *ethapi.PublicAccountAPI under 'eth'
DEBUG[04-23|13:56:27] HTTP registered *eth.PublicEthereumAPI under 'eth'
DEBUG[04-23|13:56:27] HTTP registered *eth.PublicMinerAPI under 'eth'
DEBUG[04-23|13:56:27] HTTP registered *downloader.PublicDownloaderAPI under 'eth'
DEBUG[04-23|13:56:27] HTTP registered *filters.PublicFilterAPI under 'eth'
DEBUG[04-23|13:56:27] HTTP registered *ethapi.PublicNetAPI under 'net'
INFO [04-23|13:56:27] HTTP endpoint opened: http://127.0.0.1:8545
INFO [04-23|13:56:30] Unlocked account address=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"rpc_modules\",\"params\":null}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":1,\"result\":{\"admin\":\"1.0\",\"debug\":\"1.0\",\"eth\":\"1.0\",\"miner\":\"1.0\",\"net\":\"1.0\",\"personal\":\"1.0\",\"rpc\":\"1.0\",\"txpool\":\"1.0\",\"web3\":\"1.0\"}}"
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":2,\"method\":\"web3_clientVersion\",\"params\":[]}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":2,\"result\":\"Geth/v1.6.0-stable-facc47cb/linux-amd64/go1.8.1\"}"
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":3,\"method\":\"eth_coinbase\",\"params\":[]}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":3,\"result\":\"0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282\"}"
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":4,\"method\":\"eth_blockNumber\",\"params\":[]}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":4,\"result\":\"0x290f\"}"
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":5,\"method\":\"eth_blockNumber\",\"params\":[]}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":5,\"result\":\"0x290f\"}"
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":6,\"method\":\"eth_getBlockByNumber\",\"params\":[\"0x290f\",false]}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":6,\"result\":{\"difficulty\":\"0x34b3c0\",\"extraData\":\"0xd783010600846765746887676f312e382e31856c696e7578\",\"gasLimit\":\"0x47e7c4\",\"gasUsed\":\"0x0\",\"hash\":\"0xc11e16c9246c1f35e4c42fddbe568d2ce74f8f4b87998fe472d0016291ce8ff3\",\"logsBloom\":\"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",\"miner\":\"0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282\",\"mixHash\":\"0xac345c2362bf3b100ea9d9a0f5e0ea3d62d374ed9a0de5c307b021bc1ef8b897\",\"nonce\":\"0x29041e850c70ca8f\",\"number\":\"0x290f\",\"parentHash\":\"0x10a6371fa2cd0a69661839bc89e83cfb2d165f1f1755048b82e85cb0a9a92ada\",\"receiptsRoot\":\"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\"sha3Uncles\":\"0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347\",\"size\":\"0x219\",\"stateRoot\":\"0x38209da6cd8d8f44d8d07bbfb1d8b3e2b7f44830dd4cd018dc3407ff6c067d15\",\"timestamp\":\"0x58fc8770\",\"totalDifficulty\":\"0x376883652\",\"transactions\":[],\"transactionsRoot\":\"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\"uncles\":[]}}"
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":7,\"method\":\"admin_datadir\",\"params\":[]}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":7,\"result\":\"/home/linnea/nodes/node1\"}"
TRACE[04-23|13:56:30] msg="sending {\"jsonrpc\":\"2.0\",\"id\":8,\"method\":\"rpc_modules\",\"params\":null}"
TRACE[04-23|13:56:30] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":8,\"result\":{\"admin\":\"1.0\",\"debug\":\"1.0\",\"eth\":\"1.0\",\"miner\":\"1.0\",\"net\":\"1.0\",\"personal\":\"1.0\",\"rpc\":\"1.0\",\"txpool\":\"1.0\",\"web3\":\"1.0\"}}"
INFO [04-23|13:56:30] Mapped network port proto=tcp extport=30303 intport=30303 interface="UPNP IGDv1-IP1"
TRACE[04-23|13:56:44] Accepted connection addr=54.175.255.230:15665
DEBUG[04-23|13:56:44] Adding p2p peer id=034612768c971139 name=Parity/v1.5.7-unstab... addr=54.175.255.230:15665 peers=1
TRACE[04-23|13:56:44] Starting protocol eth/63 id=034612768c971139 conn=inbound
DEBUG[04-23|13:56:44] Ethereum peer connected id=034612768c971139 conn=inbound name=Parity/v1.5.7-unstable-5baccf6-20170306/x86_64-linux-gnu/rustc1.15.1
DEBUG[04-23|13:56:44] Ethereum handshake failed id=034612768c971139 conn=inbound err=EOF
DEBUG[04-23|13:56:44] Removing p2p peer id=034612768c971139 conn=inbound duration=97.210ms peers=0 req=true err="too many peers"
DEBUG[04-23|13:56:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|13:56:57] Dial task done task="wait for dial hist expire (29.999881904s)"
TRACE[04-23|13:56:57] New dial task task="staticdial 54308f6a94d66bad :::30305"
TRACE[04-23|13:56:57] New dial task task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:56:57] Dial error task="staticdial 54308f6a94d66bad :::30305" err="dial tcp [::]:30305: getsockopt: connection refused"
DEBUG[04-23|13:56:57] Can't resolve node id=54308f6a94d66bad err="discovery is disabled"
TRACE[04-23|13:56:57] Dial task done task="staticdial 54308f6a94d66bad :::30305"
TRACE[04-23|13:56:57] Dial error task="staticdial 63b4cb07ec10e133 :::30306" err="dial tcp [::]:30306: getsockopt: connection refused"
DEBUG[04-23|13:56:57] Can't resolve node id=63b4cb07ec10e133 err="discovery is disabled"
TRACE[04-23|13:56:57] Dial task done task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:56:57] New dial task task="wait for dial hist expire (29.999879638s)"
TRACE[04-23|13:57:05] Accepted connection addr=[::1]:52406
DEBUG[04-23|13:57:05] Adding p2p peer id=ab7a88e20a1c2515 name=Geth/v1.6.0-stable-f... addr=[::1]:52406 peers=1
TRACE[04-23|13:57:05] Starting protocol eth/63 id=ab7a88e20a1c2515 conn=inbound
DEBUG[04-23|13:57:05] Ethereum peer connected id=ab7a88e20a1c2515 conn=inbound name=Geth/v1.6.0-stable-facc47cb/linux-amd64/go1.8.1
TRACE[04-23|13:57:05] Registering sync peer peer=ab7a88e20a1c2515
DEBUG[04-23|13:57:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|13:57:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|13:57:27] Dial task done task="wait for dial hist expire (29.999879638s)"
TRACE[04-23|13:57:27] New dial task task="staticdial 54308f6a94d66bad :::30305"
TRACE[04-23|13:57:27] New dial task task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:57:27] Dial error task="staticdial 54308f6a94d66bad :::30305" err="dial tcp [::]:30305: getsockopt: connection refused"
DEBUG[04-23|13:57:27] Can't resolve node id=54308f6a94d66bad err="discovery is disabled"
TRACE[04-23|13:57:27] Dial task done task="staticdial 54308f6a94d66bad :::30305"
TRACE[04-23|13:57:27] Dial error task="staticdial 63b4cb07ec10e133 :::30306" err="dial tcp [::]:30306: getsockopt: connection refused"
DEBUG[04-23|13:57:27] Can't resolve node id=63b4cb07ec10e133 err="discovery is disabled"
TRACE[04-23|13:57:27] Dial task done task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:57:27] New dial task task="wait for dial hist expire (29.999891055s)"
TRACE[04-23|13:57:41] Accepted connection addr=90.225.163.12:35394
DEBUG[04-23|13:57:41] Adding p2p peer id=54308f6a94d66bad name=Geth/v1.6.0-stable-f... addr=90.225.163.12:35394 peers=2
TRACE[04-23|13:57:41] Starting protocol eth/63 id=54308f6a94d66bad conn=inbound
DEBUG[04-23|13:57:41] Ethereum peer connected id=54308f6a94d66bad conn=inbound name=Geth/v1.6.0-stable-facc47cb/linux-amd64/go1.8.1
TRACE[04-23|13:57:41] Registering sync peer peer=54308f6a94d66bad
DEBUG[04-23|13:57:41] Relaxed downloader QoS values rtt=20s confidence=0.500 ttl=1m0s
DEBUG[04-23|13:57:47] Recalculated downloader QoS values rtt=20s confidence=0.750 ttl=1m0s
TRACE[04-23|13:57:57] Dial task done task="wait for dial hist expire (29.999891055s)"
TRACE[04-23|13:57:57] New dial task task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:57:57] Dial error task="staticdial 63b4cb07ec10e133 :::30306" err="dial tcp [::]:30306: getsockopt: connection refused"
DEBUG[04-23|13:57:57] Can't resolve node id=63b4cb07ec10e133 err="discovery is disabled"
TRACE[04-23|13:57:57] Dial task done task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:57:57] New dial task task="wait for dial hist expire (29.999996369s)"
DEBUG[04-23|13:58:07] Recalculated downloader QoS values rtt=20s confidence=0.875 ttl=1m0s
TRACE[04-23|13:58:14] Accepted connection addr=52.183.65.60:59064
DEBUG[04-23|13:58:14] Adding p2p peer id=36ac781ee987644c name=Parity/v1.5.4-beta-7... addr=52.183.65.60:59064 peers=3
TRACE[04-23|13:58:14] Starting protocol eth/63 id=36ac781ee987644c conn=inbound
DEBUG[04-23|13:58:14] Ethereum peer connected id=36ac781ee987644c conn=inbound name=Parity/v1.5.4-beta-74b850e-20170223/x86_64-linux-gnu/rustc1.15.1
DEBUG[04-23|13:58:15] Ethereum handshake failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|13:58:15] Protocol eth/63 failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|13:58:15] Removing p2p peer id=36ac781ee987644c conn=inbound duration=187.290ms peers=2 req=false err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|13:58:27] Recalculated downloader QoS values rtt=20s confidence=0.938 ttl=1m0s
TRACE[04-23|13:58:27] Dial task done task="wait for dial hist expire (29.999996369s)"
TRACE[04-23|13:58:27] New dial task task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:58:27] Dial error task="staticdial 63b4cb07ec10e133 :::30306" err="dial tcp [::]:30306: getsockopt: connection refused"
DEBUG[04-23|13:58:27] Can't resolve node id=63b4cb07ec10e133 err="discovery is disabled"
TRACE[04-23|13:58:27] Dial task done task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:58:27] New dial task task="wait for dial hist expire (29.999996158s)"
TRACE[04-23|13:58:29] Accepted connection addr=213.231.4.18:50048
DEBUG[04-23|13:58:29] Adding p2p peer id=8185ab9dfaad195a name=Ethereum(J)/v1.5.0/W... addr=213.231.4.18:50048 peers=3
TRACE[04-23|13:58:29] Starting protocol eth/63 id=8185ab9dfaad195a conn=inbound
DEBUG[04-23|13:58:29] Ethereum peer connected id=8185ab9dfaad195a conn=inbound name=Ethereum(J)/v1.5.0/Windows/Dev/Java/Dev
DEBUG[04-23|13:58:29] Ethereum handshake failed id=8185ab9dfaad195a conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|13:58:29] Protocol eth/63 failed id=8185ab9dfaad195a conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|13:58:29] Removing p2p peer id=8185ab9dfaad195a conn=inbound duration=23.997ms peers=2 req=false err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|13:58:47] Recalculated downloader QoS values rtt=20s confidence=0.969 ttl=1m0s
TRACE[04-23|13:58:47] Accepted connection addr=95.248.255.188:43430
TRACE[04-23|13:58:52] Failed RLPx handshake addr=95.248.255.188:43430 conn=inbound err=EOF
TRACE[04-23|13:58:52] Accepted connection addr=95.248.255.188:43556
TRACE[04-23|13:58:57] Dial task done task="wait for dial hist expire (29.999996158s)"
TRACE[04-23|13:58:57] New dial task task="staticdial 63b4cb07ec10e133 :::30306"
DEBUG[04-23|13:58:57] Adding p2p peer id=63b4cb07ec10e133 name=Geth/v1.6.0-stable-f... addr=[::1]:30306 peers=3
TRACE[04-23|13:58:57] Dial task done task="staticdial 63b4cb07ec10e133 :::30306"
TRACE[04-23|13:58:57] New dial task task="wait for dial hist expire (29.999997201s)"
TRACE[04-23|13:58:57] Starting protocol eth/63 id=63b4cb07ec10e133 conn=staticdial
DEBUG[04-23|13:58:57] Ethereum peer connected id=63b4cb07ec10e133 conn=staticdial name=Geth/v1.6.0-stable-facc47cb/linux-amd64/go1.8.1
TRACE[04-23|13:58:57] Registering sync peer peer=63b4cb07ec10e133
DEBUG[04-23|13:58:57] Relaxed downloader QoS values rtt=20s confidence=0.646 ttl=1m0s
TRACE[04-23|13:58:57] Failed RLPx handshake addr=95.248.255.188:43556 conn=inbound err=EOF
DEBUG[04-23|13:59:07] Recalculated downloader QoS values rtt=20s confidence=0.823 ttl=1m0s
DEBUG[04-23|13:59:27] Recalculated downloader QoS values rtt=20s confidence=0.911 ttl=1m0s
TRACE[04-23|13:59:27] Dial task done task="wait for dial hist expire (29.999997201s)"
DEBUG[04-23|13:59:47] Recalculated downloader QoS values rtt=20s confidence=0.956 ttl=1m0s
DEBUG[04-23|14:00:07] Recalculated downloader QoS values rtt=20s confidence=0.978 ttl=1m0s
TRACE[04-23|14:00:15] Accepted connection addr=167.114.122.244:54820
TRACE[04-23|14:00:18] Failed RLPx handshake addr=167.114.122.244:54820 conn=inbound err=EOF
DEBUG[04-23|14:00:27] Recalculated downloader QoS values rtt=20s confidence=0.989 ttl=1m0s
DEBUG[04-23|14:00:47] Recalculated downloader QoS values rtt=20s confidence=0.994 ttl=1m0s
DEBUG[04-23|14:01:07] Recalculated downloader QoS values rtt=20s confidence=0.997 ttl=1m0s
DEBUG[04-23|14:01:27] Recalculated downloader QoS values rtt=20s confidence=0.999 ttl=1m0s
TRACE[04-23|14:01:29] Accepted connection addr=52.183.65.60:44024
DEBUG[04-23|14:01:29] Adding p2p peer id=36ac781ee987644c name=Parity/v1.5.4-beta-7... addr=52.183.65.60:44024 peers=4
TRACE[04-23|14:01:29] Starting protocol eth/63 id=36ac781ee987644c conn=inbound
DEBUG[04-23|14:01:29] Ethereum peer connected id=36ac781ee987644c conn=inbound name=Parity/v1.5.4-beta-74b850e-20170223/x86_64-linux-gnu/rustc1.15.1
DEBUG[04-23|14:01:29] Ethereum handshake failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|14:01:29] Protocol eth/63 failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:01:29] Removing p2p peer id=36ac781ee987644c conn=inbound duration=186.465ms peers=3 req=false err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:01:47] Recalculated downloader QoS values rtt=20s confidence=0.999 ttl=1m0s
DEBUG[04-23|14:02:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:02:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:02:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:03:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:03:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:03:34] msg="sending {\"jsonrpc\":\"2.0\",\"id\":9,\"method\":\"miner_start\",\"params\":[1]}"
INFO [04-23|14:03:34] Updated mining threads threads=1
TRACE[04-23|14:03:34] msg="<-readResp: response {\"jsonrpc\":\"2.0\",\"id\":9,\"result\":null}"
INFO [04-23|14:03:34] Starting mining operation
INFO [04-23|14:03:34] Commit new mining work number=10512 txs=0 uncles=0 elapsed=433.563µs
TRACE[04-23|14:03:34] Requiring new ethash dataset epoch=0
TRACE[04-23|14:03:34] Requiring new future ethash dataset epoch=1
DEBUG[04-23|14:03:34] Loaded old ethash dataset from disk epoch=0
TRACE[04-23|14:03:34] Started ethash search for new nonces miner=0 seed=7546572329198358501
DEBUG[04-23|14:03:34] Loaded old ethash dataset from disk epoch=1
TRACE[04-23|14:03:38] Ethash nonce found and reported miner=0 attempts=307529 nonce=7546572329198666030
INFO [04-23|14:03:38] Successfully sealed new block number=10512 hash=bec829…efc9d8
DEBUG[04-23|14:03:38] Trie cache stats after commit misses=23 unloads=0
INFO [04-23|14:03:38] 🔨 mined potential block number=10512 hash=bec829…efc9d8
INFO [04-23|14:03:38] Commit new mining work number=10513 txs=0 uncles=0 elapsed=208.173µs
TRACE[04-23|14:03:38] Propagated block hash=bec829…efc9d8 recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:03:38] Started ethash search for new nonces miner=0 seed=4521238521389081883
TRACE[04-23|14:03:38] Announced block hash=bec829…efc9d8 recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:03:38] Announced block hash=bec829…efc9d8 recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:03:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:03:50] Queued propagated block peer=63b4cb07ec10e133 number=10513 hash=071fc1…1b1d15 queued=1
DEBUG[04-23|14:03:50] Importing propagated block peer=63b4cb07ec10e133 number=10513 hash=071fc1…1b1d15
TRACE[04-23|14:03:50] Requiring new ethash cache epoch=0
TRACE[04-23|14:03:50] Requiring new future ethash cache epoch=1
DEBUG[04-23|14:03:50] Loaded old ethash cache from disk epoch=0
DEBUG[04-23|14:03:50] Loaded old ethash cache from disk epoch=1
DEBUG[04-23|14:03:50] Trie cache stats after commit misses=33 unloads=0
DEBUG[04-23|14:03:50] Inserted new block number=10513 hash=071fc1…1b1d15 uncles=0 txs=0 gas=0 elapsed=11.821ms
INFO [04-23|14:03:50] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=11.884ms mgasps=0.000 number=10513 hash=071fc1…1b1d15
INFO [04-23|14:03:50] Commit new mining work number=10514 txs=0 uncles=0 elapsed=122.642µs
TRACE[04-23|14:03:50] Started ethash search for new nonces miner=0 seed=6901128206058849576
TRACE[04-23|14:03:50] Ethash nonce search aborted miner=0 attempts=711735
TRACE[04-23|14:03:50] Announced block hash=071fc1…1b1d15 recipients=2 duration=86.959ms
TRACE[04-23|14:03:50] Propagated block hash=071fc1…1b1d15 recipients=1 duration=87.247ms
TRACE[04-23|14:03:50] Announced block hash=071fc1…1b1d15 recipients=2 duration=87.483ms
DEBUG[04-23|14:03:50] Pooled new transaction hash=0b3699…2d6fb9 from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xdf81ef8b824d427f360ebf2559d4511506e06941
DEBUG[04-23|14:03:50] Promoting queued transaction hash=0b3699…2d6fb9
INFO [04-23|14:03:50] Submitted transaction fullhash=0x0b3699a675ccc800e6ae1b221214a1bbbe63e64be18be5e26b2b57ae992d6fb9 recipient=0xdf81ef8b824d427f360ebf2559d4511506e06941
TRACE[04-23|14:03:50] Broadcast transaction hash=0b3699…2d6fb9 recipients=3
DEBUG[04-23|14:04:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:04:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:04:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:04:55] Accepted connection addr=104.41.188.223:45973
DEBUG[04-23|14:04:55] Adding p2p peer id=f3ed47e04bc412af name=Parity/v1.6.3-beta-c... addr=104.41.188.223:45973 peers=4
TRACE[04-23|14:04:55] Starting protocol eth/63 id=f3ed47e04bc412af conn=inbound
DEBUG[04-23|14:04:55] Ethereum peer connected id=f3ed47e04bc412af conn=inbound name=Parity/v1.6.3-beta-ccc5732-20170314/x86_64-linux-gnu/rustc1.15.1
DEBUG[04-23|14:04:56] Ethereum handshake failed id=f3ed47e04bc412af conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|14:04:56] Protocol eth/63 failed id=f3ed47e04bc412af conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:04:56] Removing p2p peer id=f3ed47e04bc412af conn=inbound duration=325.131ms peers=3 req=true err="disconnect requested"
DEBUG[04-23|14:05:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:05:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:05:28] Ethash nonce found and reported miner=0 attempts=5522213 nonce=6901128206064371789
INFO [04-23|14:05:28] Successfully sealed new block number=10514 hash=38e80a…e44a4a
DEBUG[04-23|14:05:28] Trie cache stats after commit misses=45 unloads=0
INFO [04-23|14:05:28] 🔨 mined potential block number=10514 hash=38e80a…e44a4a
TRACE[04-23|14:05:28] Propagated block hash=38e80a…e44a4a recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:05:28] Announced block hash=38e80a…e44a4a recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:05:28] Announced block hash=38e80a…e44a4a recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:05:28] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:05:28] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=66ns
DEBUG[04-23|14:05:28] VM returned with error err=nil
INFO [04-23|14:05:28] Commit new mining work number=10515 txs=1 uncles=0 elapsed=10.233ms
TRACE[04-23|14:05:28] Started ethash search for new nonces miner=0 seed=3666577567587360925
DEBUG[04-23|14:05:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:06:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:06:17] Queued propagated block peer=ab7a88e20a1c2515 number=10515 hash=98faa0…7e4f0a queued=1
DEBUG[04-23|14:06:17] Importing propagated block peer=ab7a88e20a1c2515 number=10515 hash=98faa0…7e4f0a
DEBUG[04-23|14:06:17] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:06:17] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=153ns
DEBUG[04-23|14:06:17] VM returned with error err=nil
TRACE[04-23|14:06:17] Propagated block hash=98faa0…7e4f0a recipients=1 duration=8.732ms
DEBUG[04-23|14:06:17] Trie cache stats after commit misses=86 unloads=1
DEBUG[04-23|14:06:17] Inserted new block number=10515 hash=98faa0…7e4f0a uncles=0 txs=1 gas=90000 elapsed=5.145ms
INFO [04-23|14:06:17] Imported new chain segment blocks=1 txs=1 mgas=0.090 elapsed=5.235ms mgasps=17.190 number=10515 hash=98faa0…7e4f0a
DEBUG[04-23|14:06:17] Removed old pending transaction hash=0b3699…2d6fb9
INFO [04-23|14:06:17] Commit new mining work number=10516 txs=0 uncles=0 elapsed=139.764µs
TRACE[04-23|14:06:17] Announced block hash=98faa0…7e4f0a recipients=1 duration=9.750ms
TRACE[04-23|14:06:17] Started ethash search for new nonces miner=0 seed=4813348106153521830
TRACE[04-23|14:06:17] Ethash nonce search aborted miner=0 attempts=2727715
TRACE[04-23|14:06:24] Ethash nonce found and reported miner=0 attempts=381724 nonce=4813348106153903554
INFO [04-23|14:06:24] Successfully sealed new block number=10516 hash=b838e8…2855f8
DEBUG[04-23|14:06:24] Trie cache stats after commit misses=86 unloads=1
INFO [04-23|14:06:24] 🔨 mined potential block number=10516 hash=b838e8…2855f8
INFO [04-23|14:06:24] Commit new mining work number=10517 txs=0 uncles=0 elapsed=2.856ms
TRACE[04-23|14:06:24] Started ethash search for new nonces miner=0 seed=8336557230404764900
TRACE[04-23|14:06:24] Propagated block hash=b838e8…2855f8 recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:06:24] Announced block hash=b838e8…2855f8 recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:06:24] Announced block hash=b838e8…2855f8 recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:06:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:06:28] Accepted connection addr=52.183.65.60:35060
DEBUG[04-23|14:06:28] Adding p2p peer id=36ac781ee987644c name=Parity/v1.5.4-beta-7... addr=52.183.65.60:35060 peers=4
TRACE[04-23|14:06:28] Starting protocol eth/63 id=36ac781ee987644c conn=inbound
DEBUG[04-23|14:06:28] Ethereum peer connected id=36ac781ee987644c conn=inbound name=Parity/v1.5.4-beta-74b850e-20170223/x86_64-linux-gnu/rustc1.15.1
DEBUG[04-23|14:06:28] Ethereum handshake failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|14:06:28] Protocol eth/63 failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:06:28] Removing p2p peer id=36ac781ee987644c conn=inbound duration=184.608ms peers=3 req=true err="disconnect requested"
DEBUG[04-23|14:06:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:06:59] Queued propagated block peer=63b4cb07ec10e133 number=10517 hash=6c3f49…8d5461 queued=1
DEBUG[04-23|14:06:59] Importing propagated block peer=63b4cb07ec10e133 number=10517 hash=6c3f49…8d5461
TRACE[04-23|14:06:59] Propagated block hash=6c3f49…8d5461 recipients=1 duration=7.357ms
DEBUG[04-23|14:06:59] Trie cache stats after commit misses=96 unloads=1
DEBUG[04-23|14:06:59] Inserted new block number=10517 hash=6c3f49…8d5461 uncles=0 txs=0 gas=0 elapsed=15.737ms
INFO [04-23|14:06:59] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=15.809ms mgasps=0.000 number=10517 hash=6c3f49…8d5461
INFO [04-23|14:06:59] Commit new mining work number=10518 txs=0 uncles=0 elapsed=122.457µs
INFO [04-23|14:06:59] 🔗 block reached canonical chain number=10512 hash=bec829…efc9d8
TRACE[04-23|14:06:59] Announced block hash=6c3f49…8d5461 recipients=0 duration=19.738ms
TRACE[04-23|14:06:59] Started ethash search for new nonces miner=0 seed=3437690505772093328
TRACE[04-23|14:06:59] Ethash nonce search aborted miner=0 attempts=1942721
DEBUG[04-23|14:07:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:07:12] Queued propagated block peer=54308f6a94d66bad number=10518 hash=142464…155592 queued=1
DEBUG[04-23|14:07:12] Importing propagated block peer=54308f6a94d66bad number=10518 hash=142464…155592
TRACE[04-23|14:07:12] Propagated block hash=142464…155592 recipients=1 duration=3.999ms
DEBUG[04-23|14:07:12] Trie cache stats after commit misses=102 unloads=1
DEBUG[04-23|14:07:12] Inserted new block number=10518 hash=142464…155592 uncles=0 txs=0 gas=0 elapsed=4.283ms
INFO [04-23|14:07:12] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=4.361ms mgasps=0.000 number=10518 hash=142464…155592
INFO [04-23|14:07:12] Commit new mining work number=10519 txs=0 uncles=0 elapsed=120.717µs
TRACE[04-23|14:07:12] Started ethash search for new nonces miner=0 seed=6829563811452088001
TRACE[04-23|14:07:12] Announced block hash=142464…155592 recipients=1 duration=20.674ms
TRACE[04-23|14:07:12] Ethash nonce search aborted miner=0 attempts=758607
DEBUG[04-23|14:07:27] Queued propagated block peer=ab7a88e20a1c2515 number=10519 hash=d5fe43…013a2c queued=1
DEBUG[04-23|14:07:27] Importing propagated block peer=ab7a88e20a1c2515 number=10519 hash=d5fe43…013a2c
TRACE[04-23|14:07:27] Propagated block hash=d5fe43…013a2c recipients=1 duration=21.638ms
DEBUG[04-23|14:07:27] Trie cache stats after commit misses=108 unloads=1
DEBUG[04-23|14:07:27] Inserted new block number=10519 hash=d5fe43…013a2c uncles=0 txs=0 gas=0 elapsed=27.082ms
INFO [04-23|14:07:27] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=27.200ms mgasps=0.000 number=10519 hash=d5fe43…013a2c
INFO [04-23|14:07:27] Commit new mining work number=10520 txs=0 uncles=0 elapsed=196.578µs
INFO [04-23|14:07:27] 🔗 block reached canonical chain number=10514 hash=38e80a…e44a4a
TRACE[04-23|14:07:27] Announced block hash=d5fe43…013a2c recipients=1 duration=37.915ms
TRACE[04-23|14:07:27] Started ethash search for new nonces miner=0 seed=3981832958316610429
DEBUG[04-23|14:07:27] Queued propagated block peer=54308f6a94d66bad number=10519 hash=d5fe43…013a2c queued=1
TRACE[04-23|14:07:27] Ethash nonce search aborted miner=0 attempts=890676
DEBUG[04-23|14:07:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:07:29] Ethash nonce found and reported miner=0 attempts=118079 nonce=3981832958316728508
INFO [04-23|14:07:29] Successfully sealed new block number=10520 hash=d40a22…8753af
DEBUG[04-23|14:07:29] Trie cache stats after commit misses=111 unloads=1
INFO [04-23|14:07:29] 🔨 mined potential block number=10520 hash=d40a22…8753af
TRACE[04-23|14:07:29] Propagated block hash=d40a22…8753af recipients=1 duration=2562047h47m16.854s
INFO [04-23|14:07:29] Commit new mining work number=10521 txs=0 uncles=0 elapsed=463.634µs
TRACE[04-23|14:07:29] Started ethash search for new nonces miner=0 seed=9136306555586058663
TRACE[04-23|14:07:29] Announced block hash=d40a22…8753af recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:07:29] Announced block hash=d40a22…8753af recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:07:29] Queued propagated block peer=63b4cb07ec10e133 number=10520 hash=d40a22…8753af queued=1
DEBUG[04-23|14:07:30] Queued propagated block peer=ab7a88e20a1c2515 number=10521 hash=20b02d…bd3f1b queued=1
DEBUG[04-23|14:07:30] Importing propagated block peer=ab7a88e20a1c2515 number=10521 hash=20b02d…bd3f1b
TRACE[04-23|14:07:30] Propagated block hash=20b02d…bd3f1b recipients=1 duration=3.879ms
DEBUG[04-23|14:07:30] Trie cache stats after commit misses=121 unloads=1
DEBUG[04-23|14:07:30] Inserted new block number=10521 hash=20b02d…bd3f1b uncles=0 txs=0 gas=0 elapsed=8.191ms
INFO [04-23|14:07:30] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=8.248ms mgasps=0.000 number=10521 hash=20b02d…bd3f1b
TRACE[04-23|14:07:30] Announced block hash=20b02d…bd3f1b recipients=1 duration=12.216ms
INFO [04-23|14:07:30] Commit new mining work number=10522 txs=0 uncles=0 elapsed=267.85µs
INFO [04-23|14:07:30] 🔗 block reached canonical chain number=10516 hash=b838e8…2855f8
TRACE[04-23|14:07:30] Started ethash search for new nonces miner=0 seed=7596584414936240277
DEBUG[04-23|14:07:30] Queued propagated block peer=63b4cb07ec10e133 number=10521 hash=20b02d…bd3f1b queued=1
TRACE[04-23|14:07:30] Ethash nonce search aborted miner=0 attempts=50011
TRACE[04-23|14:07:31] Ethash nonce found and reported miner=0 attempts=51099 nonce=7596584414936291376
INFO [04-23|14:07:31] Successfully sealed new block number=10522 hash=ae7530…2f584e
DEBUG[04-23|14:07:31] Trie cache stats after commit misses=124 unloads=1
INFO [04-23|14:07:31] 🔨 mined potential block number=10522 hash=ae7530…2f584e
TRACE[04-23|14:07:31] Propagated block hash=ae7530…2f584e recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:07:31] Announced block hash=ae7530…2f584e recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:07:31] Announced block hash=ae7530…2f584e recipients=0 duration=2562047h47m16.854s
INFO [04-23|14:07:31] Commit new mining work number=10523 txs=0 uncles=0 elapsed=4.504ms
TRACE[04-23|14:07:31] Started ethash search for new nonces miner=0 seed=6105117211741295993
DEBUG[04-23|14:07:31] Queued propagated block peer=54308f6a94d66bad number=10522 hash=ae7530…2f584e queued=1
DEBUG[04-23|14:07:36] Queued propagated block peer=63b4cb07ec10e133 number=10523 hash=098848…ea778b queued=1
DEBUG[04-23|14:07:36] Importing propagated block peer=63b4cb07ec10e133 number=10523 hash=098848…ea778b
TRACE[04-23|14:07:36] Propagated block hash=098848…ea778b recipients=1 duration=3.807ms
DEBUG[04-23|14:07:36] Trie cache stats after commit misses=134 unloads=1
DEBUG[04-23|14:07:36] Inserted new block number=10523 hash=098848…ea778b uncles=0 txs=0 gas=0 elapsed=13.031ms
INFO [04-23|14:07:36] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=13.121ms mgasps=0.000 number=10523 hash=098848…ea778b
INFO [04-23|14:07:36] Commit new mining work number=10524 txs=0 uncles=0 elapsed=145.148µs
TRACE[04-23|14:07:36] Announced block hash=098848…ea778b recipients=0 duration=17.042ms
TRACE[04-23|14:07:36] Started ethash search for new nonces miner=0 seed=4343131153260509129
TRACE[04-23|14:07:36] Ethash nonce search aborted miner=0 attempts=324283
DEBUG[04-23|14:07:38] Queued propagated block peer=54308f6a94d66bad number=10524 hash=2b83b7…68df16 queued=1
DEBUG[04-23|14:07:38] Importing propagated block peer=54308f6a94d66bad number=10524 hash=2b83b7…68df16
TRACE[04-23|14:07:38] Propagated block hash=2b83b7…68df16 recipients=0 duration=21.147ms
DEBUG[04-23|14:07:38] Trie cache stats after commit misses=140 unloads=1
DEBUG[04-23|14:07:38] Inserted new block number=10524 hash=2b83b7…68df16 uncles=0 txs=0 gas=0 elapsed=12.560ms
INFO [04-23|14:07:38] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=12.861ms mgasps=0.000 number=10524 hash=2b83b7…68df16
TRACE[04-23|14:07:38] Announced block hash=2b83b7…68df16 recipients=0 duration=32.477ms
INFO [04-23|14:07:38] Commit new mining work number=10525 txs=0 uncles=0 elapsed=636.103µs
TRACE[04-23|14:07:38] Ethash nonce search aborted miner=0 attempts=97534
TRACE[04-23|14:07:38] Started ethash search for new nonces miner=0 seed=164860851392213888
DEBUG[04-23|14:07:44] Pooled new transaction hash=489b66…ca1e77 from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=nil
DEBUG[04-23|14:07:44] Promoting queued transaction hash=489b66…ca1e77
INFO [04-23|14:07:44] Submitted contract creation fullhash=0x489b66da26d52b6cf98e865d9356461f60dac1448b7884a56974e23adfca1e77 contract=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:07:44] Broadcast transaction hash=489b66…ca1e77 recipients=3
DEBUG[04-23|14:07:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:07:49] Accepted connection addr=213.231.4.18:52700
DEBUG[04-23|14:07:49] Adding p2p peer id=8185ab9dfaad195a name=Ethereum(J)/v1.5.0/W... addr=213.231.4.18:52700 peers=4
TRACE[04-23|14:07:49] Accepted connection addr=213.231.4.18:52702
TRACE[04-23|14:07:49] Starting protocol eth/63 id=8185ab9dfaad195a conn=inbound
DEBUG[04-23|14:07:49] Ethereum peer connected id=8185ab9dfaad195a conn=inbound name=Ethereum(J)/v1.5.0/Windows/Dev/Java/Dev
TRACE[04-23|14:07:49] Rejected peer before protocol handshake id=8185ab9dfaad195a addr=213.231.4.18:52702 conn=inbound err="already connected"
DEBUG[04-23|14:07:49] Ethereum handshake failed id=8185ab9dfaad195a conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|14:07:49] Protocol eth/63 failed id=8185ab9dfaad195a conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:07:49] Removing p2p peer id=8185ab9dfaad195a conn=inbound duration=13.361ms peers=3 req=false err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:07:55] Queued propagated block peer=54308f6a94d66bad number=10525 hash=e8fdba…2a9a76 queued=1
DEBUG[04-23|14:07:55] Importing propagated block peer=54308f6a94d66bad number=10525 hash=e8fdba…2a9a76
DEBUG[04-23|14:07:55] Trie cache stats after commit misses=155 unloads=1
DEBUG[04-23|14:07:55] Inserted new block number=10525 hash=e8fdba…2a9a76 uncles=0 txs=0 gas=0 elapsed=3.979ms
INFO [04-23|14:07:55] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=4.052ms mgasps=0.000 number=10525 hash=e8fdba…2a9a76
DEBUG[04-23|14:07:55] EVM running contract hash="[229 165 45 64 163 31 188 190 45 70 32 149 7 72 171 189 176 219 227 53 77 115 51 186 118 144 130 19 201 117 223 70]"
DEBUG[04-23|14:07:55] EVM finished running contract hash="[229 165 45 64 163 31 188 190 45 70 32 149 7 72 171 189 176 219 227 53 77 115 51 186 118 144 130 19 201 117 223 70]" elapsed=81ns
INFO [04-23|14:07:55] Commit new mining work number=10526 txs=1 uncles=0 elapsed=2.654ms
INFO [04-23|14:07:55] 🔗 block reached canonical chain number=10520 hash=d40a22…8753af
TRACE[04-23|14:07:55] Propagated block hash=e8fdba…2a9a76 recipients=1 duration=17.241ms
TRACE[04-23|14:07:55] Announced block hash=e8fdba…2a9a76 recipients=1 duration=17.587ms
TRACE[04-23|14:07:55] Started ethash search for new nonces miner=0 seed=3845094597228045887
TRACE[04-23|14:07:55] Ethash nonce search aborted miner=0 attempts=872179
TRACE[04-23|14:07:55] Announced block hash=e8fdba…2a9a76 recipients=2 duration=35.498ms
DEBUG[04-23|14:07:55] Receipt not found for transaction hash=489b66…ca1e77
DEBUG[04-23|14:08:01] Queued propagated block peer=ab7a88e20a1c2515 number=10526 hash=9f7dc5…8812dc queued=1
DEBUG[04-23|14:08:01] Importing propagated block peer=ab7a88e20a1c2515 number=10526 hash=9f7dc5…8812dc
TRACE[04-23|14:08:01] Propagated block hash=9f7dc5…8812dc recipients=1 duration=3.872ms
DEBUG[04-23|14:08:01] EVM running contract hash="[229 165 45 64 163 31 188 190 45 70 32 149 7 72 171 189 176 219 227 53 77 115 51 186 118 144 130 19 201 117 223 70]"
DEBUG[04-23|14:08:01] EVM finished running contract hash="[229 165 45 64 163 31 188 190 45 70 32 149 7 72 171 189 176 219 227 53 77 115 51 186 118 144 130 19 201 117 223 70]" elapsed=512ns
DEBUG[04-23|14:08:01] Trie cache stats after commit misses=170 unloads=1
DEBUG[04-23|14:08:01] Inserted new block number=10526 hash=9f7dc5…8812dc uncles=0 txs=1 gas=448133 elapsed=12.017ms
INFO [04-23|14:08:01] Imported new chain segment blocks=1 txs=1 mgas=0.448 elapsed=12.109ms mgasps=37.007 number=10526 hash=9f7dc5…8812dc
DEBUG[04-23|14:08:01] Removed old pending transaction hash=489b66…ca1e77
TRACE[04-23|14:08:01] Announced block hash=9f7dc5…8812dc recipients=0 duration=15.957ms
INFO [04-23|14:08:01] Commit new mining work number=10527 txs=0 uncles=0 elapsed=130.165µs
TRACE[04-23|14:08:01] Started ethash search for new nonces miner=0 seed=8480599849117277878
TRACE[04-23|14:08:01] Ethash nonce search aborted miner=0 attempts=362110
DEBUG[04-23|14:08:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:08:11] Ethash nonce found and reported miner=0 attempts=534917 nonce=8480599849117812795
INFO [04-23|14:08:11] Successfully sealed new block number=10527 hash=f43c62…38d44a
DEBUG[04-23|14:08:11] Trie cache stats after commit misses=170 unloads=1
INFO [04-23|14:08:11] 🔗 block reached canonical chain number=10522 hash=ae7530…2f584e
INFO [04-23|14:08:11] 🔨 mined potential block number=10527 hash=f43c62…38d44a
TRACE[04-23|14:08:11] Propagated block hash=f43c62…38d44a recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:08:11] Announced block hash=f43c62…38d44a recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:08:11] Announced block hash=f43c62…38d44a recipients=0 duration=2562047h47m16.854s
INFO [04-23|14:08:11] Commit new mining work number=10528 txs=0 uncles=0 elapsed=585.215µs
TRACE[04-23|14:08:11] Started ethash search for new nonces miner=0 seed=606164205809765136
DEBUG[04-23|14:08:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:08:32] Ethash nonce found and reported miner=0 attempts=1141311 nonce=606164205810906447
INFO [04-23|14:08:32] Successfully sealed new block number=10528 hash=7e0b35…b85882
DEBUG[04-23|14:08:32] Trie cache stats after commit misses=176 unloads=1
INFO [04-23|14:08:32] 🔨 mined potential block number=10528 hash=7e0b35…b85882
DEBUG[04-23|14:08:32] Queued propagated block peer=54308f6a94d66bad number=10528 hash=7e0b35…b85882 queued=1
TRACE[04-23|14:08:32] Propagated block hash=7e0b35…b85882 recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:08:32] Announced block hash=7e0b35…b85882 recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:08:32] Announced block hash=7e0b35…b85882 recipients=0 duration=2562047h47m16.854s
INFO [04-23|14:08:32] Commit new mining work number=10529 txs=0 uncles=0 elapsed=9.695ms
TRACE[04-23|14:08:32] Started ethash search for new nonces miner=0 seed=609539784218004254
TRACE[04-23|14:08:41] Accepted connection addr=104.41.188.223:48587
DEBUG[04-23|14:08:41] Adding p2p peer id=f3ed47e04bc412af name=Parity/v1.6.3-beta-c... addr=104.41.188.223:48587 peers=4
TRACE[04-23|14:08:41] Starting protocol eth/63 id=f3ed47e04bc412af conn=inbound
DEBUG[04-23|14:08:41] Ethereum peer connected id=f3ed47e04bc412af conn=inbound name=Parity/v1.6.3-beta-ccc5732-20170314/x86_64-linux-gnu/rustc1.15.1
DEBUG[04-23|14:08:41] Ethereum handshake failed id=f3ed47e04bc412af conn=inbound err=EOF
DEBUG[04-23|14:08:41] Removing p2p peer id=f3ed47e04bc412af conn=inbound duration=350.023µs peers=3 req=false err=EOF
DEBUG[04-23|14:08:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:09:01] Pooled new transaction hash=a78fe3…fe1c50 from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:09:01] Promoting queued transaction hash=a78fe3…fe1c50
INFO [04-23|14:09:01] Submitted transaction fullhash=0xa78fe3fd181f1f4d3e0257500fe7a51f2ac19ccaada0e1471cf5bbf31ffe1c50 recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:09:01] Broadcast transaction hash=a78fe3…fe1c50 recipients=3
DEBUG[04-23|14:09:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:09:18] Accepted connection addr=217.234.155.243:51838
TRACE[04-23|14:09:18] Ethash nonce found and reported miner=0 attempts=2582772 nonce=609539784220587026
INFO [04-23|14:09:18] Successfully sealed new block number=10529 hash=80d808…f1e087
DEBUG[04-23|14:09:18] Trie cache stats after commit misses=193 unloads=1
INFO [04-23|14:09:18] 🔨 mined potential block number=10529 hash=80d808…f1e087
TRACE[04-23|14:09:18] Propagated block hash=80d808…f1e087 recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:09:18] Announced block hash=80d808…f1e087 recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:09:18] Announced block hash=80d808…f1e087 recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:09:18] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:09:18] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=66ns
INFO [04-23|14:09:18] Commit new mining work number=10530 txs=1 uncles=0 elapsed=1.057ms
TRACE[04-23|14:09:18] Started ethash search for new nonces miner=0 seed=7798868841974803009
TRACE[04-23|14:09:19] Failed RLPx handshake addr=217.234.155.243:51838 conn=inbound err=EOF
TRACE[04-23|14:09:26] Accepted connection addr=23.96.39.52:59146
DEBUG[04-23|14:09:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:09:29] Failed RLPx handshake addr=23.96.39.52:59146 conn=inbound err=EOF
DEBUG[04-23|14:09:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:10:02] Queued propagated block peer=63b4cb07ec10e133 number=10530 hash=4a70f8…516488 queued=1
DEBUG[04-23|14:10:02] Importing propagated block peer=63b4cb07ec10e133 number=10530 hash=4a70f8…516488
TRACE[04-23|14:10:02] Propagated block hash=4a70f8…516488 recipients=1 duration=3.923ms
DEBUG[04-23|14:10:02] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:02] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=59ns
DEBUG[04-23|14:10:02] Trie cache stats after commit misses=216 unloads=1
DEBUG[04-23|14:10:02] Inserted new block number=10530 hash=4a70f8…516488 uncles=0 txs=1 gas=43197 elapsed=4.738ms
INFO [04-23|14:10:02] Imported new chain segment blocks=1 txs=1 mgas=0.043 elapsed=4.858ms mgasps=8.890 number=10530 hash=4a70f8…516488
DEBUG[04-23|14:10:02] Removed old pending transaction hash=a78fe3…fe1c50
INFO [04-23|14:10:02] Commit new mining work number=10531 txs=0 uncles=0 elapsed=142.324µs
TRACE[04-23|14:10:02] Started ethash search for new nonces miner=0 seed=2425536355847307490
TRACE[04-23|14:10:02] Announced block hash=4a70f8…516488 recipients=0 duration=15.611ms
TRACE[04-23|14:10:02] Ethash nonce search aborted miner=0 attempts=2473566
DEBUG[04-23|14:10:03] Pooled new transaction hash=e8e2d4…fb085d from=0x18eb7b3961c6fc0c558914f9600a68d03d36cefe to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:03] Promoting queued transaction hash=e8e2d4…fb085d
TRACE[04-23|14:10:03] Broadcast transaction hash=e8e2d4…fb085d recipients=2
TRACE[04-23|14:10:03] Discarding already known transaction hash=e8e2d4…fb085d
DEBUG[04-23|14:10:03] Pooled new transaction hash=dc84dc…22bfde from=0xa1f7bb946406799e05aeb85d56a7fefe0f4b919c to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:03] Promoting queued transaction hash=dc84dc…22bfde
TRACE[04-23|14:10:03] Broadcast transaction hash=dc84dc…22bfde recipients=2
TRACE[04-23|14:10:03] Discarding already known transaction hash=dc84dc…22bfde
DEBUG[04-23|14:10:03] Pooled new transaction hash=742081…7928dd from=0xb2d2229de96d3b3d578f36354afbd188df290e34 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:03] Promoting queued transaction hash=742081…7928dd
TRACE[04-23|14:10:03] Discarding already known transaction hash=742081…7928dd
TRACE[04-23|14:10:03] Broadcast transaction hash=742081…7928dd recipients=1
TRACE[04-23|14:10:03] Discarding already known transaction hash=742081…7928dd
DEBUG[04-23|14:10:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:10:27] Ethash nonce found and reported miner=0 attempts=1392726 nonce=2425536355848700216
INFO [04-23|14:10:27] Successfully sealed new block number=10531 hash=e35610…95ecc3
DEBUG[04-23|14:10:27] Trie cache stats after commit misses=228 unloads=1
INFO [04-23|14:10:27] 🔨 mined potential block number=10531 hash=e35610…95ecc3
DEBUG[04-23|14:10:27] Queued propagated block peer=54308f6a94d66bad number=10531 hash=e35610…95ecc3 queued=1
TRACE[04-23|14:10:27] Propagated block hash=e35610…95ecc3 recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:10:27] Announced block hash=e35610…95ecc3 recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:10:27] Announced block hash=e35610…95ecc3 recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:10:27] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:27] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=73ns
DEBUG[04-23|14:10:27] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:27] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=73ns
DEBUG[04-23|14:10:27] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:27] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=66ns
INFO [04-23|14:10:27] Commit new mining work number=10532 txs=3 uncles=0 elapsed=11.295ms
TRACE[04-23|14:10:27] Started ethash search for new nonces miner=0 seed=7855068490773834340
DEBUG[04-23|14:10:27] Queued propagated block peer=ab7a88e20a1c2515 number=10532 hash=a35f82…95ba57 queued=1
DEBUG[04-23|14:10:27] Importing propagated block peer=ab7a88e20a1c2515 number=10532 hash=a35f82…95ba57
TRACE[04-23|14:10:27] Propagated block hash=a35f82…95ba57 recipients=1 duration=3.750ms
DEBUG[04-23|14:10:27] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:27] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=283ns
DEBUG[04-23|14:10:27] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:27] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=62ns
DEBUG[04-23|14:10:27] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:27] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=59ns
DEBUG[04-23|14:10:27] Trie cache stats after commit misses=266 unloads=1
DEBUG[04-23|14:10:27] Inserted new block number=10532 hash=a35f82…95ba57 uncles=0 txs=3 gas=222277 elapsed=16.526ms
INFO [04-23|14:10:27] Imported new chain segment blocks=1 txs=3 mgas=0.222 elapsed=16.708ms mgasps=13.304 number=10532 hash=a35f82…95ba57
TRACE[04-23|14:10:27] Announced block hash=a35f82…95ba57 recipients=1 duration=20.557ms
DEBUG[04-23|14:10:27] Removed old pending transaction hash=dc84dc…22bfde
DEBUG[04-23|14:10:27] Removed old pending transaction hash=742081…7928dd
DEBUG[04-23|14:10:27] Removed old pending transaction hash=e8e2d4…fb085d
INFO [04-23|14:10:27] Commit new mining work number=10533 txs=0 uncles=0 elapsed=360.158µs
INFO [04-23|14:10:27] 🔗 block reached canonical chain number=10527 hash=f43c62…38d44a
TRACE[04-23|14:10:27] Started ethash search for new nonces miner=0 seed=5033300409390996332
TRACE[04-23|14:10:27] Ethash nonce search aborted miner=0 attempts=12448
DEBUG[04-23|14:10:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:10:28] Pooled new transaction hash=3dcb88…1c890f from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:28] Promoting queued transaction hash=3dcb88…1c890f
INFO [04-23|14:10:28] Submitted transaction fullhash=0x3dcb882e2695f3dc86c207cdca0a7675635328461131ab906c7c4c02001c890f recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:10:28] Broadcast transaction hash=3dcb88…1c890f recipients=3
TRACE[04-23|14:10:28] Discarding already known transaction hash=3dcb88…1c890f
DEBUG[04-23|14:10:28] Pooled new transaction hash=78f1cc…f04a32 from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:28] Promoting queued transaction hash=78f1cc…f04a32
INFO [04-23|14:10:28] Submitted transaction fullhash=0x78f1cc7f7e4ae55be1a5dfe8f2c45af2e39e274af51e070a11ee8d0f90f04a32 recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:10:28] Broadcast transaction hash=78f1cc…f04a32 recipients=3
DEBUG[04-23|14:10:30] Queued propagated block peer=54308f6a94d66bad number=10533 hash=d02bb5…8c7e3c queued=1
DEBUG[04-23|14:10:30] Importing propagated block peer=54308f6a94d66bad number=10533 hash=d02bb5…8c7e3c
DEBUG[04-23|14:10:30] Trie cache stats after commit misses=285 unloads=1
DEBUG[04-23|14:10:30] Inserted new block number=10533 hash=d02bb5…8c7e3c uncles=0 txs=0 gas=0 elapsed=4.041ms
INFO [04-23|14:10:30] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=4.111ms mgasps=0.000 number=10533 hash=d02bb5…8c7e3c
DEBUG[04-23|14:10:30] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:30] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=58ns
DEBUG[04-23|14:10:30] VM returned with error err=nil
DEBUG[04-23|14:10:30] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:30] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=66ns
INFO [04-23|14:10:30] Commit new mining work number=10534 txs=2 uncles=0 elapsed=1.568ms
INFO [04-23|14:10:30] 🔗 block reached canonical chain number=10528 hash=7e0b35…b85882
TRACE[04-23|14:10:30] Started ethash search for new nonces miner=0 seed=6970201692467370839
TRACE[04-23|14:10:30] Propagated block hash=d02bb5…8c7e3c recipients=1 duration=20.967ms
TRACE[04-23|14:10:30] Announced block hash=d02bb5…8c7e3c recipients=2 duration=21.203ms
TRACE[04-23|14:10:30] Announced block hash=d02bb5…8c7e3c recipients=0 duration=21.251ms
TRACE[04-23|14:10:30] Ethash nonce search aborted miner=0 attempts=148319
DEBUG[04-23|14:10:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:10:51] Ethash nonce found and reported miner=0 attempts=1149175 nonce=6970201692468520014
INFO [04-23|14:10:51] Successfully sealed new block number=10534 hash=eb53af…d2aafb
DEBUG[04-23|14:10:51] Trie cache stats after commit misses=305 unloads=2
INFO [04-23|14:10:51] 🔗 block reached canonical chain number=10529 hash=80d808…f1e087
INFO [04-23|14:10:51] 🔨 mined potential block number=10534 hash=eb53af…d2aafb
DEBUG[04-23|14:10:51] Removed old pending transaction hash=3dcb88…1c890f
DEBUG[04-23|14:10:51] Removed old pending transaction hash=78f1cc…f04a32
INFO [04-23|14:10:51] Commit new mining work number=10535 txs=0 uncles=0 elapsed=226.674µs
TRACE[04-23|14:10:51] Propagated block hash=eb53af…d2aafb recipients=1 duration=2562047h47m16.854s
TRACE[04-23|14:10:51] Started ethash search for new nonces miner=0 seed=2204781790352992728
TRACE[04-23|14:10:51] Announced block hash=eb53af…d2aafb recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:10:51] Announced block hash=eb53af…d2aafb recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:10:52] Pooled new transaction hash=d65f4c…b7b601 from=0x18eb7b3961c6fc0c558914f9600a68d03d36cefe to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:52] Promoting queued transaction hash=d65f4c…b7b601
TRACE[04-23|14:10:52] Discarding already known transaction hash=d65f4c…b7b601
DEBUG[04-23|14:10:52] Pooled new transaction hash=276512…cdd445 from=0xb2d2229de96d3b3d578f36354afbd188df290e34 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:52] Promoting queued transaction hash=276512…cdd445
TRACE[04-23|14:10:52] Broadcast transaction hash=d65f4c…b7b601 recipients=0
TRACE[04-23|14:10:52] Discarding already known transaction hash=d65f4c…b7b601
TRACE[04-23|14:10:52] Discarding already known transaction hash=276512…cdd445
TRACE[04-23|14:10:52] Discarding already known transaction hash=276512…cdd445
TRACE[04-23|14:10:52] Broadcast transaction hash=276512…cdd445 recipients=2
DEBUG[04-23|14:10:52] Pooled new transaction hash=718325…794041 from=0xa1f7bb946406799e05aeb85d56a7fefe0f4b919c to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:10:52] Promoting queued transaction hash=718325…794041
TRACE[04-23|14:10:52] Broadcast transaction hash=718325…794041 recipients=2
TRACE[04-23|14:10:52] Discarding already known transaction hash=718325…794041
DEBUG[04-23|14:10:55] Queued propagated block peer=54308f6a94d66bad number=10535 hash=944532…1cdd4a queued=1
DEBUG[04-23|14:10:55] Importing propagated block peer=54308f6a94d66bad number=10535 hash=944532…1cdd4a
DEBUG[04-23|14:10:55] Trie cache stats after commit misses=342 unloads=2
DEBUG[04-23|14:10:55] Inserted new block number=10535 hash=944532…1cdd4a uncles=0 txs=0 gas=0 elapsed=4.102ms
INFO [04-23|14:10:55] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=5.285ms mgasps=0.000 number=10535 hash=944532…1cdd4a
TRACE[04-23|14:10:55] Propagated block hash=944532…1cdd4a recipients=1 duration=8.967ms
TRACE[04-23|14:10:55] Announced block hash=944532…1cdd4a recipients=1 duration=11.497ms
DEBUG[04-23|14:10:55] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:55] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=516ns
DEBUG[04-23|14:10:55] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:55] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=81ns
DEBUG[04-23|14:10:55] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:55] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=71ns
TRACE[04-23|14:10:55] Announced block hash=944532…1cdd4a recipients=2 duration=14.790ms
INFO [04-23|14:10:55] Commit new mining work number=10536 txs=3 uncles=0 elapsed=3.414ms
TRACE[04-23|14:10:55] Started ethash search for new nonces miner=0 seed=253648426883078058
TRACE[04-23|14:10:55] Ethash nonce search aborted miner=0 attempts=201778
DEBUG[04-23|14:10:59] Queued propagated block peer=54308f6a94d66bad number=10536 hash=b75282…e4e8ca queued=1
DEBUG[04-23|14:10:59] Importing propagated block peer=54308f6a94d66bad number=10536 hash=b75282…e4e8ca
TRACE[04-23|14:10:59] Propagated block hash=b75282…e4e8ca recipients=1 duration=4.102ms
DEBUG[04-23|14:10:59] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:59] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=151ns
DEBUG[04-23|14:10:59] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:59] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=78ns
DEBUG[04-23|14:10:59] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:10:59] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=70ns
DEBUG[04-23|14:10:59] Trie cache stats after commit misses=374 unloads=2
DEBUG[04-23|14:10:59] Inserted new block number=10536 hash=b75282…e4e8ca uncles=0 txs=3 gas=207149 elapsed=6.388ms
INFO [04-23|14:10:59] Imported new chain segment blocks=1 txs=3 mgas=0.207 elapsed=6.580ms mgasps=31.477 number=10536 hash=b75282…e4e8ca
TRACE[04-23|14:10:59] Announced block hash=b75282…e4e8ca recipients=0 duration=10.674ms
DEBUG[04-23|14:10:59] Removed old pending transaction hash=d65f4c…b7b601
DEBUG[04-23|14:10:59] Removed old pending transaction hash=276512…cdd445
DEBUG[04-23|14:10:59] Removed old pending transaction hash=718325…794041
INFO [04-23|14:10:59] Commit new mining work number=10537 txs=0 uncles=0 elapsed=287.749µs
INFO [04-23|14:10:59] 🔗 block reached canonical chain number=10531 hash=e35610…95ecc3
TRACE[04-23|14:10:59] Started ethash search for new nonces miner=0 seed=1449013765111622520
TRACE[04-23|14:10:59] Ethash nonce search aborted miner=0 attempts=233500
DEBUG[04-23|14:11:00] Pooled new transaction hash=3b2459…82bfcc from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:11:00] Promoting queued transaction hash=3b2459…82bfcc
INFO [04-23|14:11:00] Submitted transaction fullhash=0x3b24594c44b9f13ba7783be5d13088e4c3a88484233ee57609ce09e07382bfcc recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:11:00] Broadcast transaction hash=3b2459…82bfcc recipients=3
DEBUG[04-23|14:11:01] Pooled new transaction hash=043e39…e1448f from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:11:01] Promoting queued transaction hash=043e39…e1448f
INFO [04-23|14:11:01] Submitted transaction fullhash=0x043e39ecfccc1e8e99777e873c4ca738c1f71ba00588b64ede875004e3e1448f recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:11:01] Broadcast transaction hash=043e39…e1448f recipients=3
DEBUG[04-23|14:11:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:11:27] Accepted connection addr=52.183.65.60:53156
DEBUG[04-23|14:11:27] Adding p2p peer id=36ac781ee987644c name=Parity/v1.5.4-beta-7... addr=52.183.65.60:53156 peers=4
TRACE[04-23|14:11:27] Starting protocol eth/63 id=36ac781ee987644c conn=inbound
DEBUG[04-23|14:11:27] Ethereum peer connected id=36ac781ee987644c conn=inbound name=Parity/v1.5.4-beta-74b850e-20170223/x86_64-linux-gnu/rustc1.15.1
TRACE[04-23|14:11:27] Refreshing port mapping proto=tcp extport=30303 intport=30303 interface="UPNP IGDv1-IP1"
DEBUG[04-23|14:11:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:11:27] Ethereum handshake failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|14:11:27] Protocol eth/63 failed id=36ac781ee987644c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:11:27] Removing p2p peer id=36ac781ee987644c conn=inbound duration=183.688ms peers=3 req=true err="disconnect requested"
DEBUG[04-23|14:11:29] Queued propagated block peer=54308f6a94d66bad number=10537 hash=f526d8…8bdccd queued=1
DEBUG[04-23|14:11:29] Importing propagated block peer=54308f6a94d66bad number=10537 hash=f526d8…8bdccd
TRACE[04-23|14:11:29] Propagated block hash=f526d8…8bdccd recipients=1 duration=3.831ms
DEBUG[04-23|14:11:29] Trie cache stats after commit misses=393 unloads=2
DEBUG[04-23|14:11:29] Inserted new block number=10537 hash=f526d8…8bdccd uncles=0 txs=0 gas=0 elapsed=14.898ms
INFO [04-23|14:11:29] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=15.032ms mgasps=0.000 number=10537 hash=f526d8…8bdccd
TRACE[04-23|14:11:29] Announced block hash=f526d8…8bdccd recipients=0 duration=18.862ms
DEBUG[04-23|14:11:29] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:29] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=70ns
DEBUG[04-23|14:11:29] VM returned with error err=nil
DEBUG[04-23|14:11:29] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:29] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=69ns
INFO [04-23|14:11:29] Commit new mining work number=10538 txs=2 uncles=0 elapsed=1.707ms
TRACE[04-23|14:11:29] Started ethash search for new nonces miner=0 seed=238693061152626320
TRACE[04-23|14:11:29] Ethash nonce search aborted miner=0 attempts=1581523
DEBUG[04-23|14:11:33] Queued propagated block peer=63b4cb07ec10e133 number=10538 hash=242c8d…c6c799 queued=1
DEBUG[04-23|14:11:33] Importing propagated block peer=63b4cb07ec10e133 number=10538 hash=242c8d…c6c799
TRACE[04-23|14:11:33] Propagated block hash=242c8d…c6c799 recipients=1 duration=3.772ms
DEBUG[04-23|14:11:33] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:33] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=169ns
DEBUG[04-23|14:11:33] VM returned with error err=nil
DEBUG[04-23|14:11:33] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:33] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=72ns
DEBUG[04-23|14:11:33] Trie cache stats after commit misses=434 unloads=4
DEBUG[04-23|14:11:33] Inserted new block number=10538 hash=242c8d…c6c799 uncles=0 txs=2 gas=119515 elapsed=5.414ms
INFO [04-23|14:11:33] Imported new chain segment blocks=1 txs=2 mgas=0.120 elapsed=5.541ms mgasps=21.567 number=10538 hash=242c8d…c6c799
DEBUG[04-23|14:11:33] Removed old pending transaction hash=3b2459…82bfcc
DEBUG[04-23|14:11:33] Removed old pending transaction hash=043e39…e1448f
INFO [04-23|14:11:33] Commit new mining work number=10539 txs=0 uncles=0 elapsed=229.188µs
TRACE[04-23|14:11:33] Started ethash search for new nonces miner=0 seed=4858582373530909515
TRACE[04-23|14:11:33] Announced block hash=242c8d…c6c799 recipients=1 duration=13.761ms
TRACE[04-23|14:11:33] Ethash nonce search aborted miner=0 attempts=229946
DEBUG[04-23|14:11:33] Queued propagated block peer=ab7a88e20a1c2515 number=10538 hash=242c8d…c6c799 queued=1
DEBUG[04-23|14:11:34] Pooled new transaction hash=a2070d…3a892d from=0x18eb7b3961c6fc0c558914f9600a68d03d36cefe to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:11:34] Promoting queued transaction hash=a2070d…3a892d
TRACE[04-23|14:11:34] Discarding already known transaction hash=a2070d…3a892d
TRACE[04-23|14:11:34] Discarding already known transaction hash=a2070d…3a892d
TRACE[04-23|14:11:34] Broadcast transaction hash=a2070d…3a892d recipients=0
DEBUG[04-23|14:11:34] Pooled new transaction hash=27301a…0011cb from=0xb2d2229de96d3b3d578f36354afbd188df290e34 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:11:34] Promoting queued transaction hash=27301a…0011cb
TRACE[04-23|14:11:34] Broadcast transaction hash=27301a…0011cb recipients=2
DEBUG[04-23|14:11:34] Pooled new transaction hash=4b5fac…7bf8e3 from=0xa1f7bb946406799e05aeb85d56a7fefe0f4b919c to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:11:34] Promoting queued transaction hash=4b5fac…7bf8e3
TRACE[04-23|14:11:34] Broadcast transaction hash=4b5fac…7bf8e3 recipients=2
TRACE[04-23|14:11:34] Discarding already known transaction hash=4b5fac…7bf8e3
DEBUG[04-23|14:11:37] Queued propagated block peer=54308f6a94d66bad number=10539 hash=19e2e3…a2d870 queued=1
DEBUG[04-23|14:11:37] Importing propagated block peer=54308f6a94d66bad number=10539 hash=19e2e3…a2d870
TRACE[04-23|14:11:37] Propagated block hash=19e2e3…a2d870 recipients=1 duration=3.792ms
DEBUG[04-23|14:11:37] Trie cache stats after commit misses=435 unloads=4
DEBUG[04-23|14:11:37] Inserted new block number=10539 hash=19e2e3…a2d870 uncles=0 txs=0 gas=0 elapsed=9.259ms
INFO [04-23|14:11:37] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=9.368ms mgasps=0.000 number=10539 hash=19e2e3…a2d870
TRACE[04-23|14:11:37] Announced block hash=19e2e3…a2d870 recipients=0 duration=13.175ms
DEBUG[04-23|14:11:37] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:37] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=69ns
DEBUG[04-23|14:11:37] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:37] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=66ns
DEBUG[04-23|14:11:37] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:37] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=61ns
INFO [04-23|14:11:37] Commit new mining work number=10540 txs=3 uncles=0 elapsed=8.131ms
INFO [04-23|14:11:37] 🔗 block reached canonical chain number=10534 hash=eb53af…d2aafb
TRACE[04-23|14:11:37] Started ethash search for new nonces miner=0 seed=6738949493651937996
TRACE[04-23|14:11:37] Ethash nonce search aborted miner=0 attempts=208075
DEBUG[04-23|14:11:46] Queued propagated block peer=63b4cb07ec10e133 number=10540 hash=232b18…a05982 queued=1
DEBUG[04-23|14:11:46] Importing propagated block peer=63b4cb07ec10e133 number=10540 hash=232b18…a05982
TRACE[04-23|14:11:46] Propagated block hash=232b18…a05982 recipients=1 duration=3.748ms
DEBUG[04-23|14:11:46] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:46] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=220ns
DEBUG[04-23|14:11:46] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:46] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=70ns
DEBUG[04-23|14:11:46] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:46] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=70ns
DEBUG[04-23|14:11:46] Trie cache stats after commit misses=440 unloads=4
DEBUG[04-23|14:11:46] Inserted new block number=10540 hash=232b18…a05982 uncles=0 txs=3 gas=207277 elapsed=23.044ms
INFO [04-23|14:11:46] Imported new chain segment blocks=1 txs=3 mgas=0.207 elapsed=23.223ms mgasps=8.925 number=10540 hash=232b18…a05982
DEBUG[04-23|14:11:46] Removed old pending transaction hash=27301a…0011cb
DEBUG[04-23|14:11:46] Removed old pending transaction hash=4b5fac…7bf8e3
DEBUG[04-23|14:11:46] Removed old pending transaction hash=a2070d…3a892d
TRACE[04-23|14:11:46] Announced block hash=232b18…a05982 recipients=0 duration=27.011ms
INFO [04-23|14:11:46] Commit new mining work number=10541 txs=0 uncles=0 elapsed=144.262µs
TRACE[04-23|14:11:46] Started ethash search for new nonces miner=0 seed=6004815285378577620
TRACE[04-23|14:11:46] Ethash nonce search aborted miner=0 attempts=524579
DEBUG[04-23|14:11:47] Pooled new transaction hash=9ead5b…51c782 from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:11:47] Promoting queued transaction hash=9ead5b…51c782
INFO [04-23|14:11:47] Submitted transaction fullhash=0x9ead5b0a5c2cda2bfb372de10215cbdf41ccc299dad357d3b553b05c6151c782 recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:11:47] Discarding already known transaction hash=9ead5b…51c782
TRACE[04-23|14:11:47] Discarding already known transaction hash=9ead5b…51c782
TRACE[04-23|14:11:47] Broadcast transaction hash=9ead5b…51c782 recipients=3
DEBUG[04-23|14:11:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:11:47] Pooled new transaction hash=6134da…3b12cd from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:11:47] Promoting queued transaction hash=6134da…3b12cd
INFO [04-23|14:11:47] Submitted transaction fullhash=0x6134dab7ef98526714fde1a0ccb113e74da53d9e4cef2dfa205f4c2d633b12cd recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:11:47] Broadcast transaction hash=6134da…3b12cd recipients=3
TRACE[04-23|14:11:47] Discarding already known transaction hash=6134da…3b12cd
DEBUG[04-23|14:11:59] Queued propagated block peer=ab7a88e20a1c2515 number=10541 hash=7350cf…f6cc0d queued=1
DEBUG[04-23|14:11:59] Importing propagated block peer=ab7a88e20a1c2515 number=10541 hash=7350cf…f6cc0d
TRACE[04-23|14:11:59] Propagated block hash=7350cf…f6cc0d recipients=1 duration=4.309ms
DEBUG[04-23|14:11:59] Trie cache stats after commit misses=441 unloads=4
DEBUG[04-23|14:11:59] Inserted new block number=10541 hash=7350cf…f6cc0d uncles=0 txs=0 gas=0 elapsed=6.981ms
INFO [04-23|14:11:59] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=7.076ms mgasps=0.000 number=10541 hash=7350cf…f6cc0d
DEBUG[04-23|14:11:59] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:59] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=79ns
DEBUG[04-23|14:11:59] VM returned with error err=nil
DEBUG[04-23|14:11:59] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:11:59] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=65ns
INFO [04-23|14:11:59] Commit new mining work number=10542 txs=2 uncles=0 elapsed=1.788ms
TRACE[04-23|14:11:59] Started ethash search for new nonces miner=0 seed=3448403770156780612
TRACE[04-23|14:11:59] Announced block hash=7350cf…f6cc0d recipients=1 duration=20.723ms
TRACE[04-23|14:11:59] Ethash nonce search aborted miner=0 attempts=695216
DEBUG[04-23|14:12:03] Queued propagated block peer=ab7a88e20a1c2515 number=10542 hash=d988b9…43ba39 queued=1
DEBUG[04-23|14:12:03] Importing propagated block peer=ab7a88e20a1c2515 number=10542 hash=d988b9…43ba39
TRACE[04-23|14:12:03] Propagated block hash=d988b9…43ba39 recipients=1 duration=4.025ms
DEBUG[04-23|14:12:03] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:03] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=150ns
DEBUG[04-23|14:12:03] VM returned with error err=nil
DEBUG[04-23|14:12:03] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:03] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=77ns
DEBUG[04-23|14:12:03] Trie cache stats after commit misses=466 unloads=6
DEBUG[04-23|14:12:03] Inserted new block number=10542 hash=d988b9…43ba39 uncles=0 txs=2 gas=129763 elapsed=5.555ms
INFO [04-23|14:12:03] Imported new chain segment blocks=1 txs=2 mgas=0.130 elapsed=5.687ms mgasps=22.817 number=10542 hash=d988b9…43ba39
DEBUG[04-23|14:12:03] Removed old pending transaction hash=9ead5b…51c782
DEBUG[04-23|14:12:03] Removed old pending transaction hash=6134da…3b12cd
INFO [04-23|14:12:03] Commit new mining work number=10543 txs=0 uncles=0 elapsed=153.58µs
TRACE[04-23|14:12:03] Announced block hash=d988b9…43ba39 recipients=1 duration=9.915ms
TRACE[04-23|14:12:03] Started ethash search for new nonces miner=0 seed=3449097383515639936
TRACE[04-23|14:12:03] Ethash nonce search aborted miner=0 attempts=212389
DEBUG[04-23|14:12:03] Pooled new transaction hash=0c4b83…f7742a from=0x18eb7b3961c6fc0c558914f9600a68d03d36cefe to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:12:03] Promoting queued transaction hash=0c4b83…f7742a
TRACE[04-23|14:12:03] Broadcast transaction hash=0c4b83…f7742a recipients=2
DEBUG[04-23|14:12:04] Pooled new transaction hash=558b7d…441f6c from=0xb2d2229de96d3b3d578f36354afbd188df290e34 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:12:04] Promoting queued transaction hash=558b7d…441f6c
TRACE[04-23|14:12:04] Broadcast transaction hash=558b7d…441f6c recipients=2
TRACE[04-23|14:12:04] Discarding already known transaction hash=558b7d…441f6c
TRACE[04-23|14:12:04] Discarding already known transaction hash=558b7d…441f6c
DEBUG[04-23|14:12:04] Pooled new transaction hash=91c304…3698c5 from=0xa1f7bb946406799e05aeb85d56a7fefe0f4b919c to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:12:04] Promoting queued transaction hash=91c304…3698c5
TRACE[04-23|14:12:04] Discarding already known transaction hash=91c304…3698c5
TRACE[04-23|14:12:04] Discarding already known transaction hash=91c304…3698c5
TRACE[04-23|14:12:04] Broadcast transaction hash=91c304…3698c5 recipients=0
DEBUG[04-23|14:12:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:12:10] Queued propagated block peer=63b4cb07ec10e133 number=10543 hash=4f2833…f71207 queued=1
DEBUG[04-23|14:12:10] Importing propagated block peer=63b4cb07ec10e133 number=10543 hash=4f2833…f71207
DEBUG[04-23|14:12:10] Trie cache stats after commit misses=467 unloads=6
DEBUG[04-23|14:12:10] Inserted new block number=10543 hash=4f2833…f71207 uncles=0 txs=0 gas=0 elapsed=4.037ms
INFO [04-23|14:12:10] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=4.131ms mgasps=0.000 number=10543 hash=4f2833…f71207
TRACE[04-23|14:12:10] Announced block hash=4f2833…f71207 recipients=1 duration=8.033ms
DEBUG[04-23|14:12:10] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:10] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=70ns
DEBUG[04-23|14:12:10] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:10] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=78ns
DEBUG[04-23|14:12:10] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:10] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=77ns
INFO [04-23|14:12:10] Commit new mining work number=10544 txs=3 uncles=0 elapsed=2.433ms
TRACE[04-23|14:12:10] Started ethash search for new nonces miner=0 seed=8315550229800671732
TRACE[04-23|14:12:10] Propagated block hash=4f2833…f71207 recipients=1 duration=14.517ms
TRACE[04-23|14:12:10] Announced block hash=4f2833…f71207 recipients=2 duration=14.718ms
TRACE[04-23|14:12:10] Ethash nonce search aborted miner=0 attempts=384981
DEBUG[04-23|14:12:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:12:29] Queued propagated block peer=ab7a88e20a1c2515 number=10544 hash=485a98…c82836 queued=1
DEBUG[04-23|14:12:29] Importing propagated block peer=ab7a88e20a1c2515 number=10544 hash=485a98…c82836
TRACE[04-23|14:12:29] Propagated block hash=485a98…c82836 recipients=1 duration=4.312ms
DEBUG[04-23|14:12:29] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:29] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=65ns
DEBUG[04-23|14:12:29] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:29] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=70ns
DEBUG[04-23|14:12:29] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:12:29] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=71ns
DEBUG[04-23|14:12:29] Trie cache stats after commit misses=472 unloads=6
DEBUG[04-23|14:12:29] Inserted new block number=10544 hash=485a98…c82836 uncles=0 txs=3 gas=207149 elapsed=5.891ms
INFO [04-23|14:12:29] Imported new chain segment blocks=1 txs=3 mgas=0.207 elapsed=6.072ms mgasps=34.114 number=10544 hash=485a98…c82836
DEBUG[04-23|14:12:29] Removed old pending transaction hash=91c304…3698c5
DEBUG[04-23|14:12:29] Removed old pending transaction hash=0c4b83…f7742a
DEBUG[04-23|14:12:29] Removed old pending transaction hash=558b7d…441f6c
INFO [04-23|14:12:29] Commit new mining work number=10545 txs=0 uncles=0 elapsed=253.242µs
TRACE[04-23|14:12:29] Announced block hash=485a98…c82836 recipients=1 duration=10.692ms
TRACE[04-23|14:12:29] Started ethash search for new nonces miner=0 seed=7859489581331535225
TRACE[04-23|14:12:29] Ethash nonce search aborted miner=0 attempts=999891
DEBUG[04-23|14:12:30] Pooled new transaction hash=f8c9e8…3835fb from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:12:30] Promoting queued transaction hash=f8c9e8…3835fb
INFO [04-23|14:12:30] Submitted transaction fullhash=0xf8c9e84a60ff6651196bf002d43f7f24205eb727d0400826f5f5cb6eb13835fb recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:12:30] Broadcast transaction hash=f8c9e8…3835fb recipients=3
TRACE[04-23|14:12:30] Discarding already known transaction hash=f8c9e8…3835fb
DEBUG[04-23|14:12:30] Pooled new transaction hash=4a9430…b68c17 from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:12:30] Promoting queued transaction hash=4a9430…b68c17
INFO [04-23|14:12:30] Submitted transaction fullhash=0x4a9430549df9264ed1812ac3eacc1c69ae7eb11314b3625fc23c386766b68c17 recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:12:30] Broadcast transaction hash=4a9430…b68c17 recipients=3
TRACE[04-23|14:12:30] Discarding already known transaction hash=4a9430…b68c17
DEBUG[04-23|14:12:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:13:07] Ethash nonce found and reported miner=0 attempts=2111260 nonce=7859489581333646485
INFO [04-23|14:13:07] Successfully sealed new block number=10545 hash=36d0d8…554590
DEBUG[04-23|14:13:07] Trie cache stats after commit misses=472 unloads=6
INFO [04-23|14:13:07] 🔨 mined potential block number=10545 hash=36d0d8…554590
TRACE[04-23|14:13:07] Propagated block hash=36d0d8…554590 recipients=1 duration=2562047h47m16.854s
DEBUG[04-23|14:13:07] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:07] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=73ns
DEBUG[04-23|14:13:07] VM returned with error err=nil
DEBUG[04-23|14:13:07] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:07] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=70ns
INFO [04-23|14:13:07] Commit new mining work number=10546 txs=2 uncles=0 elapsed=2.190ms
TRACE[04-23|14:13:07] Started ethash search for new nonces miner=0 seed=5254506537056603800
TRACE[04-23|14:13:07] Announced block hash=36d0d8…554590 recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:13:07] Announced block hash=36d0d8…554590 recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:13:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:13:09] Queued propagated block peer=54308f6a94d66bad number=10546 hash=9e82cd…2fdbc5 queued=1
DEBUG[04-23|14:13:09] Importing propagated block peer=54308f6a94d66bad number=10546 hash=9e82cd…2fdbc5
DEBUG[04-23|14:13:09] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
TRACE[04-23|14:13:09] Propagated block hash=9e82cd…2fdbc5 recipients=1 duration=8.187ms
DEBUG[04-23|14:13:09] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=75ns
DEBUG[04-23|14:13:09] VM returned with error err=nil
DEBUG[04-23|14:13:09] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:09] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=66ns
DEBUG[04-23|14:13:09] Trie cache stats after commit misses=517 unloads=9
DEBUG[04-23|14:13:09] Inserted new block number=10546 hash=9e82cd…2fdbc5 uncles=0 txs=2 gas=134887 elapsed=5.667ms
INFO [04-23|14:13:09] Imported new chain segment blocks=1 txs=2 mgas=0.135 elapsed=5.790ms mgasps=23.294 number=10546 hash=9e82cd…2fdbc5
DEBUG[04-23|14:13:09] Removed old pending transaction hash=f8c9e8…3835fb
DEBUG[04-23|14:13:09] Removed old pending transaction hash=4a9430…b68c17
INFO [04-23|14:13:09] Commit new mining work number=10547 txs=0 uncles=0 elapsed=156.894µs
TRACE[04-23|14:13:09] Announced block hash=9e82cd…2fdbc5 recipients=1 duration=10.083ms
TRACE[04-23|14:13:09] Started ethash search for new nonces miner=0 seed=5040243264239727278
TRACE[04-23|14:13:09] Ethash nonce search aborted miner=0 attempts=114917
DEBUG[04-23|14:13:10] Pooled new transaction hash=451dfe…adf4d1 from=0x18eb7b3961c6fc0c558914f9600a68d03d36cefe to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:13:10] Promoting queued transaction hash=451dfe…adf4d1
TRACE[04-23|14:13:10] Broadcast transaction hash=451dfe…adf4d1 recipients=2
DEBUG[04-23|14:13:10] Pooled new transaction hash=107615…775118 from=0xa1f7bb946406799e05aeb85d56a7fefe0f4b919c to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:13:10] Promoting queued transaction hash=107615…775118
TRACE[04-23|14:13:10] Broadcast transaction hash=107615…775118 recipients=2
TRACE[04-23|14:13:10] Discarding already known transaction hash=107615…775118
TRACE[04-23|14:13:10] Discarding already known transaction hash=107615…775118
DEBUG[04-23|14:13:10] Pooled new transaction hash=b8c4cf…98e5d7 from=0xb2d2229de96d3b3d578f36354afbd188df290e34 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:13:10] Promoting queued transaction hash=b8c4cf…98e5d7
TRACE[04-23|14:13:10] Discarding already known transaction hash=b8c4cf…98e5d7
TRACE[04-23|14:13:10] Broadcast transaction hash=b8c4cf…98e5d7 recipients=2
DEBUG[04-23|14:13:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:13:28] Accepted connection addr=150.254.77.219:50806
TRACE[04-23|14:13:28] Accepted connection addr=217.110.80.4:50386
DEBUG[04-23|14:13:28] Adding p2p peer id=c165106f332c3e7c name=Parity/v1.6.6-beta-8... addr=217.110.80.4:50386 peers=4
TRACE[04-23|14:13:28] Starting protocol eth/63 id=c165106f332c3e7c conn=inbound
DEBUG[04-23|14:13:28] Ethereum peer connected id=c165106f332c3e7c conn=inbound name=Parity/v1.6.6-beta-8c6e3f3-20170411/x86_64-macos/rustc1.16.0
DEBUG[04-23|14:13:28] Ethereum handshake failed id=c165106f332c3e7c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|14:13:28] Protocol eth/63 failed id=c165106f332c3e7c conn=inbound err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
DEBUG[04-23|14:13:28] Removing p2p peer id=c165106f332c3e7c conn=inbound duration=34.585ms peers=3 req=false err="Genesis block mismatch - d4e56740f876aef8 (!= 6650a0ac6c5e8054)"
TRACE[04-23|14:13:31] Failed RLPx handshake addr=150.254.77.219:50806 conn=inbound err=EOF
TRACE[04-23|14:13:31] Accepted connection addr=150.254.77.219:50926
TRACE[04-23|14:13:33] Accepted connection addr=81.134.89.19:46992
DEBUG[04-23|14:13:33] Adding p2p peer id=5fe8a03672060b31 name=Parity/v1.4.9-beta-4... addr=81.134.89.19:46992 peers=4
TRACE[04-23|14:13:33] Starting protocol eth/63 id=5fe8a03672060b31 conn=inbound
DEBUG[04-23|14:13:33] Ethereum peer connected id=5fe8a03672060b31 conn=inbound name=Parity/v1.4.9-beta-48924e9-20170109/x86_64-linux-gnu/rustc1.14.0
DEBUG[04-23|14:13:33] Ethereum handshake failed id=5fe8a03672060b31 conn=inbound err=EOF
DEBUG[04-23|14:13:33] Removing p2p peer id=5fe8a03672060b31 conn=inbound duration=41.294ms peers=3 req=true err="too many peers"
TRACE[04-23|14:13:34] Failed RLPx handshake addr=150.254.77.219:50926 conn=inbound err=EOF
DEBUG[04-23|14:13:39] Queued propagated block peer=54308f6a94d66bad number=10547 hash=db09ca…c21210 queued=1
DEBUG[04-23|14:13:39] Importing propagated block peer=54308f6a94d66bad number=10547 hash=db09ca…c21210
DEBUG[04-23|14:13:39] Trie cache stats after commit misses=530 unloads=9
DEBUG[04-23|14:13:39] Inserted new block number=10547 hash=db09ca…c21210 uncles=0 txs=0 gas=0 elapsed=3.985ms
INFO [04-23|14:13:39] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=5.253ms mgasps=0.000 number=10547 hash=db09ca…c21210
DEBUG[04-23|14:13:39] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:39] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=81ns
DEBUG[04-23|14:13:39] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:39] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=77ns
DEBUG[04-23|14:13:39] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:39] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=81ns
INFO [04-23|14:13:39] Commit new mining work number=10548 txs=3 uncles=0 elapsed=2.362ms
TRACE[04-23|14:13:39] Started ethash search for new nonces miner=0 seed=7384851809111505558
TRACE[04-23|14:13:39] Announced block hash=db09ca…c21210 recipients=1 duration=17.350ms
TRACE[04-23|14:13:39] Propagated block hash=db09ca…c21210 recipients=1 duration=17.453ms
TRACE[04-23|14:13:39] Announced block hash=db09ca…c21210 recipients=2 duration=18.753ms
TRACE[04-23|14:13:39] Ethash nonce search aborted miner=0 attempts=1660387
DEBUG[04-23|14:13:40] Queued propagated block peer=54308f6a94d66bad number=10548 hash=857058…bf95ae queued=1
DEBUG[04-23|14:13:40] Importing propagated block peer=54308f6a94d66bad number=10548 hash=857058…bf95ae
DEBUG[04-23|14:13:40] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
TRACE[04-23|14:13:40] Propagated block hash=857058…bf95ae recipients=1 duration=9.725ms
DEBUG[04-23|14:13:40] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=222ns
DEBUG[04-23|14:13:40] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:40] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=77ns
DEBUG[04-23|14:13:40] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:13:40] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=76ns
DEBUG[04-23|14:13:40] Trie cache stats after commit misses=551 unloads=9
DEBUG[04-23|14:13:40] Inserted new block number=10548 hash=857058…bf95ae uncles=0 txs=3 gas=207277 elapsed=7.600ms
INFO [04-23|14:13:40] Imported new chain segment blocks=1 txs=3 mgas=0.207 elapsed=7.789ms mgasps=26.610 number=10548 hash=857058…bf95ae
DEBUG[04-23|14:13:40] Removed old pending transaction hash=451dfe…adf4d1
DEBUG[04-23|14:13:40] Removed old pending transaction hash=107615…775118
DEBUG[04-23|14:13:40] Removed old pending transaction hash=b8c4cf…98e5d7
TRACE[04-23|14:13:40] Announced block hash=857058…bf95ae recipients=1 duration=11.851ms
INFO [04-23|14:13:40] Commit new mining work number=10549 txs=0 uncles=0 elapsed=183.907µs
TRACE[04-23|14:13:40] Started ethash search for new nonces miner=0 seed=3838210403706769870
TRACE[04-23|14:13:40] Ethash nonce search aborted miner=0 attempts=47754
DEBUG[04-23|14:13:41] Pooled new transaction hash=cfa287…96c75d from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:13:41] Promoting queued transaction hash=cfa287…96c75d
INFO [04-23|14:13:41] Submitted transaction fullhash=0xcfa287dc7c76335dd78b26b72372a38feaecf50bdfe1ebb28fc0c7f1f996c75d recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:13:41] Broadcast transaction hash=cfa287…96c75d recipients=3
DEBUG[04-23|14:13:42] Pooled new transaction hash=ba1d84…de9099 from=0x5f161e2f35ecb117d943d64f69cbcbe2c3a3e282 to=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
DEBUG[04-23|14:13:42] Promoting queued transaction hash=ba1d84…de9099
INFO [04-23|14:13:42] Submitted transaction fullhash=0xba1d84e5d7f61f06477c1fc5f898fa3ab17f74f22361cc84650215bd35de9099 recipient=0xb81e4fa3c46340e5e41233df4f9ead0ef31f2eb7
TRACE[04-23|14:13:42] Broadcast transaction hash=ba1d84…de9099 recipients=3
TRACE[04-23|14:13:42] Discarding already known transaction hash=ba1d84…de9099
DEBUG[04-23|14:13:47] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
TRACE[04-23|14:14:04] Ethash nonce found and reported miner=0 attempts=1262144 nonce=3838210403708032014
INFO [04-23|14:14:04] Successfully sealed new block number=10549 hash=5067de…d5f9b8
DEBUG[04-23|14:14:04] Trie cache stats after commit misses=551 unloads=9
INFO [04-23|14:14:04] 🔨 mined potential block number=10549 hash=5067de…d5f9b8
TRACE[04-23|14:14:04] Propagated block hash=5067de…d5f9b8 recipients=1 duration=2562047h47m16.854s
DEBUG[04-23|14:14:04] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:14:04] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=79ns
DEBUG[04-23|14:14:04] VM returned with error err=nil
DEBUG[04-23|14:14:04] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:14:04] Queued propagated block peer=54308f6a94d66bad number=10549 hash=5067de…d5f9b8 queued=1
TRACE[04-23|14:14:04] Announced block hash=5067de…d5f9b8 recipients=3 duration=2562047h47m16.854s
TRACE[04-23|14:14:04] Announced block hash=5067de…d5f9b8 recipients=0 duration=2562047h47m16.854s
DEBUG[04-23|14:14:04] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=65ns
DEBUG[04-23|14:14:04] VM returned with error err=nil
INFO [04-23|14:14:04] Commit new mining work number=10550 txs=2 uncles=0 elapsed=21.694ms
TRACE[04-23|14:14:04] Started ethash search for new nonces miner=0 seed=2581503569122191304
DEBUG[04-23|14:14:07] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:14:27] Recalculated downloader QoS values rtt=20s confidence=1.000 ttl=1m0s
DEBUG[04-23|14:14:33] Queued propagated block peer=ab7a88e20a1c2515 number=10550 hash=c12c82…53f7d8 queued=1
DEBUG[04-23|14:14:33] Importing propagated block peer=ab7a88e20a1c2515 number=10550 hash=c12c82…53f7d8
TRACE[04-23|14:14:33] Propagated block hash=c12c82…53f7d8 recipients=1 duration=3.913ms
DEBUG[04-23|14:14:33] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:14:33] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=91ns
DEBUG[04-23|14:14:33] VM returned with error err=nil
DEBUG[04-23|14:14:33] EVM running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]"
DEBUG[04-23|14:14:33] EVM finished running contract hash="[192 83 254 52 169 232 210 111 157 202 182 186 158 22 225 178 15 133 19 89 58 249 228 184 109 160 203 92 102 66 47 184]" elapsed=81ns
DEBUG[04-23|14:14:33] VM returned with error err=nil
DEBUG[04-23|14:14:33] Trie cache stats after commit misses=598 unloads=10
DEBUG[04-23|14:14:33] Inserted new block number=10550 hash=c12c82…53f7d8 uncles=0 txs=2 gas=180000 elapsed=5.755ms
INFO [04-23|14:14:33] Imported new chain segment blocks=1 txs=2 mgas=0.180 elapsed=5.856ms mgasps=30.734 number=10550 hash=c12c82…53f7d8
DEBUG[04-23|14:14:33] Removed old pending transaction hash=cfa287…96c75d
DEBUG[04-23|14:14:33] Removed old pending transaction hash=ba1d84…de9099
TRACE[04-23|14:14:33] Announced block hash=c12c82…53f7d8 recipients=1 duration=10.099ms
INFO [04-23|14:14:33] Commit new mining work number=10551 txs=0 uncles=0 elapsed=480.19µs
INFO [04-23|14:14:33] 🔗 block reached canonical chain number=10545 hash=36d0d8…554590
TRACE[04-23|14:14:33] Started ethash search for new nonces miner=0 seed=800179034023573177
TRACE[04-23|14:14:33] Ethash nonce search aborted miner=0 attempts=1552777
DEBUG[04-23|14:14:38] Queued propagated block peer=63b4cb07ec10e133 number=10551 hash=be61a9…9c9126 queued=1
DEBUG[04-23|14:14:38] Importing propagated block peer=63b4cb07ec10e133 number=10551 hash=be61a9…9c9126
DEBUG[04-23|14:14:38] Trie cache stats after commit misses=601 unloads=10
DEBUG[04-23|14:14:38] Inserted new block number=10551 hash=be61a9…9c9126 uncles=0 txs=0 gas=0 elapsed=4.120ms
TRACE[04-23|14:14:38] Propagated block hash=be61a9…9c9126 recipients=1 duration=7.790ms
INFO [04-23|14:14:38] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=4.231ms mgasps=0.000 number=10551 hash=be61a9…9c9126
TRACE[04-23|14:14:38] Announced block hash=be61a9…9c9126 recipients=2 duration=7.959ms
TRACE[04-23|14:14:38] Announced block hash=be61a9…9c9126 recipients=0 duration=7.990ms
INFO [04-23|14:14:38] Commit new mining work number=10552 txs=0 uncles=0 elapsed=100.97µs
TRACE[04-23|14:14:38] Started ethash search for new nonces miner=0 seed=6954400162597576752
TRACE[04-23|14:14:38] Ethash nonce search aborted miner=0 attempts=285558