forked from bitcoin-dot-org/Bitcoin.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wallet.2021-08-09.log
1761 lines (1759 loc) · 267 KB
/
wallet.2021-08-09.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
07:44:31 [main] Context - Creating bitcoinj 0.15.10 context.
07:44:31 [main] WalletApplication - === starting app using flavor: prod, build type: release, network: org.bitcoin.production
07:44:31 [main] Bluetooth - Problem determining Bluetooth MAC via reflection
java.lang.reflect.InvocationTargetException: null
at java.lang.reflect.Method.invoke(Native Method)
at de.schildbach.wallet.util.Bluetooth.getAddress(Bluetooth.java:66)
at de.schildbach.wallet.WalletApplication.onCreate(WalletApplication.java:124)
at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1192)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:7148)
at android.app.ActivityThread.access$1500(ActivityThread.java:265)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2145)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:239)
at android.app.ActivityThread.main(ActivityThread.java:8142)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:626)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1015)
Caused by: java.lang.SecurityException: Need LOCAL_MAC_ADDRESS permission: Neither user 10402 nor current process has android.permission.LOCAL_MAC_ADDRESS.
at android.os.Parcel.createExceptionOrNull(Parcel.java:2387)
at android.os.Parcel.createException(Parcel.java:2371)
at android.os.Parcel.readException(Parcel.java:2354)
at android.os.Parcel.readException(Parcel.java:2296)
at android.bluetooth.IBluetooth$Stub$Proxy.getAddress(IBluetooth.java:2021)
... 13 common frames omitted
07:44:31 [main] WalletApplication - created notification channels, took 14.47 ms
07:44:31 [main] SendCoinsActivity - Referrer: https://bitrequest.web.app/?p=requests&payment=bitcoin&uoa=btc&amount=0&address=12ns7dnZFpEBSFFoYUnyJZbSscXEZURUcB
07:44:31 [main] InputParser - got invalid bitcoin uri: 'bitcoin:%2012ns7dnZFpEBSFFoYUnyJZbSscXEZURUcB'
org.bitcoinj.uri.BitcoinURIParseException: Bad address
at org.bitcoinj.uri.BitcoinURI.<init>(BitcoinURI.java:182)
at de.schildbach.wallet.ui.InputParser$StringInputParser.parse(InputParser.java:93)
at de.schildbach.wallet.ui.send.SendCoinsFragment.initStateFromBitcoinUri(SendCoinsFragment.java:1142)
at de.schildbach.wallet.ui.send.SendCoinsFragment.onCreate(SendCoinsFragment.java:354)
at androidx.fragment.app.Fragment.performCreate(Fragment.java:2949)
at androidx.fragment.app.FragmentStateManager.create(FragmentStateManager.java:475)
at androidx.fragment.app.FragmentStateManager.moveToExpectedState(FragmentStateManager.java:278)
at androidx.fragment.app.FragmentManager.executeOpsTogether(FragmentManager.java:2189)
at androidx.fragment.app.FragmentManager.removeRedundantOperationsAndExecute(FragmentManager.java:2106)
at androidx.fragment.app.FragmentManager.execSingleAction(FragmentManager.java:1971)
at androidx.fragment.app.BackStackRecord.commitNowAllowingStateLoss(BackStackRecord.java:311)
at androidx.fragment.app.FragmentContainerView.<init>(FragmentContainerView.java:180)
at androidx.fragment.app.FragmentLayoutInflaterFactory.onCreateView(FragmentLayoutInflaterFactory.java:52)
at androidx.fragment.app.FragmentController.onCreateView(FragmentController.java:135)
at androidx.fragment.app.FragmentActivity.dispatchFragmentsOnCreateView(FragmentActivity.java:319)
at androidx.fragment.app.FragmentActivity.onCreateView(FragmentActivity.java:298)
at android.view.LayoutInflater.tryCreateView(LayoutInflater.java:1123)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:1051)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:1015)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:1177)
at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:1138)
at android.view.LayoutInflater.inflate(LayoutInflater.java:695)
at android.view.LayoutInflater.inflate(LayoutInflater.java:547)
at android.view.LayoutInflater.inflate(LayoutInflater.java:494)
at com.android.internal.policy.PhoneWindow.setContentView(PhoneWindow.java:517)
at android.app.Activity.setContentView(Activity.java:3567)
at androidx.activity.ComponentActivity.setContentView(ComponentActivity.java:380)
at de.schildbach.wallet.ui.send.SendCoinsActivity.onCreate(SendCoinsActivity.java:74)
at android.app.Activity.performCreate(Activity.java:8119)
at android.app.Activity.performCreate(Activity.java:8103)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1309)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3706)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3891)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:85)
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2298)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:239)
at android.app.ActivityThread.main(ActivityThread.java:8142)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:626)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1015)
Caused by: org.bitcoinj.core.AddressFormatException: %2012ns7dnZFpEBSFFoYUnyJZbSscXEZURUcB
at org.bitcoinj.core.Address.fromString(Address.java:66)
at org.bitcoinj.uri.BitcoinURI.<init>(BitcoinURI.java:179)
... 42 common frames omitted
07:44:32 [pool-2-thread-1] WalletApplication - BIP39 wordlist loaded from: 'bip39-wordlist.txt', took 15.09 ms
07:44:32 [pool-2-thread-1] WalletApplication - wallet loaded from: '/data/user/0/de.schildbach.wallet/files/wallet-protobuf', took 33.65 ms
07:44:32 [main] BlockchainService - acquiring WakeLock{20ba4cd held=false, refCount=0}
07:44:32 [main] BlockchainService - service start command: null
07:44:32 [main] AbstractBlockChain - chain head is at height 694273:
block:
hash: 00000000000000000004805aa7eafabfcfa4d91f952729d6bfb15c3ebb818bb8
version: 536870916 (BIP34, BIP66, BIP65)
previous block: 000000000000000000086298a827cfa26cc79af59e9d52b1e92feb9c9e34f9fc
time: 1628148426 (2021-08-05T07:27:06Z)
difficulty target (nBits): 387148450
nonce: 2658123500
07:44:32 [OkHttp https://api.coingecko.com/...] ExchangeRatesRepository - fetched exchange rates from https://api.coingecko.com/api/v3/exchange_rates, took 627.5 ms
07:44:32 [OkHttp https://api.coingecko.com/...] ExchangeRatesRepository - fetched exchange rates from https://api.coingecko.com/api/v3/exchange_rates, took 322.7 ms
07:44:33 [main] BlockchainService - active network is up, metered, type: MOBILE, state: CONNECTED/CONNECTED, extraInfo: m3-world
07:44:33 [main] BlockchainService - creating org.bitcoinj.core.PeerGroup@abcc89b, sync mode: FULL
07:44:33 [main] BlockchainService - adding random peers from the P2P network
07:44:33 [main] BlockchainService - starting org.bitcoinj.core.PeerGroup@abcc89b asynchronously
07:44:33 [PeerGroup Thread] PeerGroup - Starting ...
07:44:33 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://lightning-wallet.com:8081/peers?srvmask=8
07:44:33 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
07:44:33 [main] BlockchainService - active network is up, metered, type: MOBILE, state: CONNECTED/CONNECTED, extraInfo: m3-world
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.emzy.de
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sprovoost.nl
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sipa.be
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bluematt.me
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bitcoin.dashjr.org
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoinstats.com
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.jonasschnelli.ch
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.btc.petertodd.org
07:44:33 [Multiplexing discovery] DnsDiscovery - Seed seed.btc.petertodd.org doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.btc.petertodd.org": No address associated with hostname
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.btc.petertodd.org
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.btc.petertodd.org
07:44:33 [main] BlockchainService - trusted peer '176.194.148.90,' unknown host
07:44:33 [main] BlockchainService - trusted peer '3.129.216.175,' unknown host
07:44:33 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.jonasschnelli.ch doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.jonasschnelli.ch": No address associated with hostname
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.jonasschnelli.ch
07:44:33 [main] BlockchainService - trusted peer '104.16.40.77,' unknown host
07:44:33 [AsyncTask #2] DynamicFeeLiveData - Dynamic fees fetched from https://wallet.schildbach.de/fees, took 1.232 s
07:44:33 [Multiplexing discovery] DnsDiscovery - Seed dnsseed.bitcoin.dashjr.org doesn't appear to support service bit filtering: Unable to resolve host "x8.dnsseed.bitcoin.dashjr.org": No address associated with hostname
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.bitcoin.dashjr.org
07:44:33 [main] BlockchainService - trusted peer '3.209.12.198,' unknown host
07:44:33 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.sipa.be doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.sipa.be": No address associated with hostname
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sipa.be
07:44:33 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.sprovoost.nl doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.sprovoost.nl": No address associated with hostname
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sprovoost.nl
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 25 peers from x8.seed.bitcoinstats.com
07:44:33 [Multiplexing discovery] DnsDiscovery - Seed dnsseed.emzy.de doesn't appear to support service bit filtering: Unable to resolve host "x8.dnsseed.emzy.de": No address associated with hostname
07:44:33 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.emzy.de
07:44:33 [main] BlockchainService - trusted peer '151.101.65.195,' unknown host
07:44:33 [main] BlockchainService - trusted peer '151.101.1.195' resolved to 151.101.1.195
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 21 peers from x8.dnsseed.bluematt.me
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.bitcoin.jonasschnelli.ch
07:44:33 [main] BlockchainService - trusted peer '15.236.224.135,' unknown host
07:44:33 [main] BlockchainService - trusted peer '13.53.40.179,' unknown host
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 23 peers from dnsseed.bitcoin.dashjr.org
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 25 peers from seed.bitcoin.sipa.be
07:44:33 [main] BlockchainService - trusted peer '34.87.232.92,' unknown host
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 23 peers from seed.bitcoin.sprovoost.nl
07:44:33 [main] BlockchainService - trusted peer '104.18.93.71,' unknown host
07:44:33 [Multiplexing discovery] DnsDiscovery - Got 26 peers from dnsseed.emzy.de
07:44:33 [AsyncTask #1] DynamicFeeLiveData - Dynamic fees not modified at https://wallet.schildbach.de/fees, took 352.3 ms
07:44:33 [Multiplexing discovery] HttpDiscovery - Got 30 peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
07:44:33 [PeerGroup Thread] MultiplexingDiscovery - Seed org.bitcoinj.net.discovery.HttpDiscovery@66acd51: failed to look up: org.bitcoinj.net.discovery.PeerDiscoveryException: java.net.ConnectException: Failed to connect to lightning-wallet.com/5.9.83.143:8081
07:44:33 [PeerGroup Thread] PeerGroup - Peer discovery took 901.1 ms and returned 221 items from 1 discoverers
07:44:33 [PeerGroup Thread] PeerGroup - Waiting 1901 ms before next connect attempt to [151.101.1.195]:8333
07:44:33 [PeerGroup Thread] PeerGroup - Waiting 1000 ms before next connect attempt to [151.101.1.195]:8333
07:44:33 [PeerGroup Thread] PeerGroup - Waiting 999 ms before next connect attempt to [151.101.1.195]:8333
07:44:34 [PeerGroup Thread] PeerGroup - Attempting connection to [151.101.1.195]:8333 (0 connected, 1 pending, 6 max)
07:44:34 [PeerGroup Thread] PeerGroup - Attempting connection to [35.228.238.236]:8333 (0 connected, 2 pending, 6 max)
07:44:34 [PeerGroup Thread] PeerGroup - Attempting connection to [178.238.233.75]:8333 (0 connected, 3 pending, 6 max)
07:44:34 [PeerGroup Thread] PeerGroup - Attempting connection to [2.32.38.166]:8333 (0 connected, 4 pending, 6 max)
07:44:34 [PeerGroup Thread] PeerGroup - Attempting connection to [213.189.185.198]:8333 (0 connected, 5 pending, 6 max)
07:44:34 [PeerGroup Thread] PeerGroup - Attempting connection to [95.216.28.167]:8333 (0 connected, 6 pending, 6 max)
07:44:34 [PeerGroup Thread] PeerGroup - Attempting connection to [161.35.9.75]:8333 (0 connected, 7 pending, 6 max)
07:44:35 [NioClientManager] NioClientManager - Connected to x8.seed.bitcoinstats.com/178.238.233.75:8333
07:44:35 [NioClientManager] Peer - Announcing to x8.seed.bitcoinstats.com/178.238.233.75:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:44:35 [NioClientManager] NioClientManager - Connected to x8.dnsseed.bluematt.me/213.189.185.198:8333
07:44:35 [NioClientManager] Peer - Announcing to x8.dnsseed.bluematt.me/213.189.185.198:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:44:35 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/95.216.28.167:8333
07:44:35 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/95.216.28.167:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:44:35 [NioClientManager] NioClientManager - Connected to x8.seed.bitcoinstats.com/161.35.9.75:8333
07:44:35 [NioClientManager] Peer - Announcing to x8.seed.bitcoinstats.com/161.35.9.75:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:44:35 [NioClientManager] NioClientManager - Connected to dnsseed.bitcoin.dashjr.org/2.32.38.166:8333
07:44:35 [NioClientManager] Peer - Announcing to dnsseed.bitcoin.dashjr.org/2.32.38.166:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:44:35 [NioClientManager] NioClientManager - Connected to dnsseed.emzy.de/35.228.238.236:8333
07:44:35 [NioClientManager] Peer - Announcing to dnsseed.emzy.de/35.228.238.236:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:44:35 [NioClientManager] Peer - Peer{[178.238.233.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}
07:44:35 [NioClientManager] PeerGroup - Peer{[178.238.233.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}: New peer (1 connected, 6 pending, 6 max)
07:44:35 [NioClientManager] Peer - Peer{[213.189.185.198]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:44:35 [NioClientManager] PeerGroup - Peer{[213.189.185.198]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}: New peer (2 connected, 5 pending, 6 max)
07:44:35 [NioClientManager] Peer - Peer{[95.216.28.167]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:44:35 [NioClientManager] PeerGroup - Peer{[95.216.28.167]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}: New peer (3 connected, 4 pending, 6 max)
07:44:35 [NioClientManager] Peer - Peer{[161.35.9.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:44:35 [NioClientManager] PeerGroup - Peer{[161.35.9.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}: New peer (4 connected, 3 pending, 6 max)
07:44:35 [NioClientManager] PeerGroup - Setting download peer: Peer{[161.35.9.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:44:35 [NioClientManager] Peer - Peer{[2.32.38.166]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}
07:44:35 [NioClientManager] PeerGroup - Peer{[2.32.38.166]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}: New peer (5 connected, 2 pending, 6 max)
07:44:35 [NioClientManager] Peer - Peer{[35.228.238.236]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:44:35 [NioClientManager] PeerGroup - Peer{[35.228.238.236]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}: New peer (6 connected, 1 pending, 6 max)
07:44:35 [PeerGroup Thread] PeerGroup - Attempting connection to [171.96.110.239]:8333 (6 connected, 2 pending, 6 max)
07:44:35 [NioClientManager] NioClientManager - Connected to dnsseed.bitcoin.dashjr.org/171.96.110.239:8333
07:44:35 [NioClientManager] Peer - Announcing to dnsseed.bitcoin.dashjr.org/171.96.110.239:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:44:36 [NioClientManager] Peer - Peer{[171.96.110.239]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:44:36 [NioClientManager] PeerGroup - Peer{[171.96.110.239]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}: New peer (7 connected, 1 pending, 6 max)
07:44:36 [NioClientManager] PeerGroup - [161.35.9.75]:8333: Peer died (6 connected, 1 pending, 6 max)
07:44:36 [NioClientManager] PeerGroup - Download peer died. Picking a new one.
07:44:36 [NioClientManager] PeerGroup - Unsetting download peer: Peer{[161.35.9.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:44:36 [NioClientManager] PeerGroup - Setting download peer: Peer{[178.238.233.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}
07:44:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2591 tx/sec, 0 pre-filtered tx/sec, avg/last 82.34/1623.43 kilobytes per sec, chain/common height 694275/694918 (warming up 10 more seconds)
07:44:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3923 tx/sec, 0 pre-filtered tx/sec, avg/last 173.14/1819.04 kilobytes per sec, chain/common height 694278/694918 (warming up 8 more seconds)
07:44:42 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694279, date 2021-08-05T08:20:32Z, hash 00000000000000000008936850893e5b76c333884023f453c65efd53401d620d
07:44:42 [Wallet autosave thread] WalletFiles - Save completed in 33.18 ms
07:44:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2834 tx/sec, 0 pre-filtered tx/sec, avg/last 242.11/1380.88 kilobytes per sec, chain/common height 694282/694918 (warming up 7 more seconds)
07:44:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1591 tx/sec, 0 pre-filtered tx/sec, avg/last 322.97/1618.79 kilobytes per sec, chain/common height 694283/694918 (warming up 6 more seconds)
07:44:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2250 tx/sec, 0 pre-filtered tx/sec, avg/last 371.53/972.88 kilobytes per sec, chain/common height 694287/694918 (warming up 5 more seconds)
07:44:45 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694288, date 2021-08-05T09:00:06Z, hash 00000000000000000008bf6a32c7bb2d24b06a4ca419228b2e8056a25d750eaf
07:44:45 [Wallet autosave thread] WalletFiles - Save completed in 23.02 ms
07:44:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2890 tx/sec, 0 pre-filtered tx/sec, avg/last 435.50/1280.88 kilobytes per sec, chain/common height 694289/694918 (warming up 4 more seconds)
07:44:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2912 tx/sec, 0 pre-filtered tx/sec, avg/last 504.59/1385.07 kilobytes per sec, chain/common height 694290/694918 (warming up 2 more seconds)
07:44:49 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694291, date 2021-08-05T09:28:40Z, hash 00000000000000000010ef9a40a39d5012b765706b0784f9727465fcce774b28
07:44:49 [Wallet autosave thread] WalletFiles - Save completed in 19.40 ms
07:44:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 810 tx/sec, 0 pre-filtered tx/sec, avg/last 557.79/1065.49 kilobytes per sec, chain/common height 694291/694918 (warming up 1 more seconds)
07:44:49 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [151.101.1.195]:8333: Timed out
07:44:49 [AbstractTimeoutHandler timeouts] PeerGroup - [151.101.1.195]:8333: Peer died (6 connected, 0 pending, 6 max)
07:44:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.63/0.00 kilobytes per sec, chain/common height 694291/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.56/0.00 kilobytes per sec, chain/common height 694291/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1981 tx/sec, 0 pre-filtered tx/sec, avg/last 630.99/1470.12 kilobytes per sec, chain/common height 694292/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 773 tx/sec, 0 pre-filtered tx/sec, avg/last 664.95/680.78 kilobytes per sec, chain/common height 694293/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 664.87/0.00 kilobytes per sec, chain/common height 694293/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:55 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694293, date 2021-08-05T09:43:17Z, hash 0000000000000000000732e4cd059ed9fa66d675f49057994588a3499e9c3631
07:44:55 [Wallet autosave thread] WalletFiles - Save completed in 20.45 ms
07:44:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2650 tx/sec, 0 pre-filtered tx/sec, avg/last 738.03/1463.32 kilobytes per sec, chain/common height 694294/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 738.03/0.00 kilobytes per sec, chain/common height 694294/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 738.03/0.00 kilobytes per sec, chain/common height 694294/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:44:59 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694295, date 2021-08-05T10:12:52Z, hash 00000000000000000006309b663b1d4a3d2bf9da0813d5eb2e88338b099002ee
07:44:59 [Wallet autosave thread] WalletFiles - Save completed in 19.28 ms
07:44:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1951 tx/sec, 0 pre-filtered tx/sec, avg/last 799.02/1219.82 kilobytes per sec, chain/common height 694295/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1223 tx/sec, 0 pre-filtered tx/sec, avg/last 767.57/994.38 kilobytes per sec, chain/common height 694297/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 767.57/0.00 kilobytes per sec, chain/common height 694297/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3061 tx/sec, 0 pre-filtered tx/sec, avg/last 745.75/1382.66 kilobytes per sec, chain/common height 694298/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:03 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694298, date 2021-08-05T10:43:10Z, hash 00000000000000000003c514f16bd3f4f5c65470e0a280037e6cf0d252f678ac
07:45:03 [Wallet autosave thread] WalletFiles - Save completed in 23.17 ms
07:45:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2883 tx/sec, 0 pre-filtered tx/sec, avg/last 750.58/1477.51 kilobytes per sec, chain/common height 694299/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2138 tx/sec, 0 pre-filtered tx/sec, avg/last 737.54/1357.83 kilobytes per sec, chain/common height 694300/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4693 tx/sec, 0 pre-filtered tx/sec, avg/last 818.73/2596.73 kilobytes per sec, chain/common height 694304/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:06 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694307, date 2021-08-05T11:50:23Z, hash 0000000000000000000f8b3825885394cf2f18b50bad2f411b1d9463bac6800c
07:45:06 [Wallet autosave thread] WalletFiles - Save completed in 15.11 ms
07:45:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3240 tx/sec, 0 pre-filtered tx/sec, avg/last 841.83/1742.94 kilobytes per sec, chain/common height 694307/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5107 tx/sec, 0 pre-filtered tx/sec, avg/last 979.67/2756.79 kilobytes per sec, chain/common height 694309/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4926 tx/sec, 0 pre-filtered tx/sec, avg/last 1123.51/4261.81 kilobytes per sec, chain/common height 694313/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2664 tx/sec, 0 pre-filtered tx/sec, avg/last 1152.97/1654.64 kilobytes per sec, chain/common height 694316/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:09 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694316, date 2021-08-05T13:26:41Z, hash 0000000000000000000761d9d2f50e2731ec77c841f1aa6d90775804289aa9b8
07:45:09 [Wallet autosave thread] WalletFiles - Save completed in 15.50 ms
07:45:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5461 tx/sec, 0 pre-filtered tx/sec, avg/last 1294.91/2838.90 kilobytes per sec, chain/common height 694318/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 6710 tx/sec, 0 pre-filtered tx/sec, avg/last 1514.44/4390.57 kilobytes per sec, chain/common height 694320/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 5866 tx/sec, 0 pre-filtered tx/sec, avg/last 1742.90/4569.15 kilobytes per sec, chain/common height 694323/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:13 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694323, date 2021-08-05T14:42:02Z, hash 00000000000000000008c3bfd377639219232482fc18fc538fd5e87b003c2c23
07:45:13 [Wallet autosave thread] WalletFiles - Save completed in 18.12 ms
07:45:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4386 tx/sec, 0 pre-filtered tx/sec, avg/last 1804.60/2704.18 kilobytes per sec, chain/common height 694325/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 6906 tx/sec, 0 pre-filtered tx/sec, avg/last 1973.94/4067.67 kilobytes per sec, chain/common height 694329/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 7434 tx/sec, 0 pre-filtered tx/sec, avg/last 2206.19/4644.91 kilobytes per sec, chain/common height 694332/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694335, date 2021-08-05T16:11:29Z, hash 0000000000000000000191bab6825ba524fcf30a514f308337c42aabdb914dc7
07:45:16 [Wallet autosave thread] WalletFiles - Save completed in 19.93 ms
07:45:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 7413 tx/sec, 0 pre-filtered tx/sec, avg/last 2356.11/4461.66 kilobytes per sec, chain/common height 694336/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1755 tx/sec, 0 pre-filtered tx/sec, avg/last 2415.00/1177.76 kilobytes per sec, chain/common height 694337/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 7142 tx/sec, 0 pre-filtered tx/sec, avg/last 2598.93/3678.67 kilobytes per sec, chain/common height 694343/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 6899 tx/sec, 0 pre-filtered tx/sec, avg/last 2715.47/3550.58 kilobytes per sec, chain/common height 694347/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:19 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694347, date 2021-08-05T17:25:31Z, hash 0000000000000000000d8ea64a9852dc4f593edfcf6d73cef9bf10dc9b44332f
07:45:19 [Wallet autosave thread] WalletFiles - Save completed in 13.53 ms
07:45:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 8037 tx/sec, 0 pre-filtered tx/sec, avg/last 2880.93/4303.68 kilobytes per sec, chain/common height 694350/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4881 tx/sec, 0 pre-filtered tx/sec, avg/last 3021.06/2802.59 kilobytes per sec, chain/common height 694352/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2920 tx/sec, 0 pre-filtered tx/sec, avg/last 3021.13/1384.02 kilobytes per sec, chain/common height 694354/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:22 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694354, date 2021-08-05T18:55:45Z, hash 00000000000000000009cb1900d9fb6914ecacfbee230581bac9288bf0ee74d8
07:45:22 [Wallet autosave thread] WalletFiles - Save completed in 22.79 ms
07:45:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4703 tx/sec, 0 pre-filtered tx/sec, avg/last 3105.80/3170.95 kilobytes per sec, chain/common height 694355/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5157 tx/sec, 0 pre-filtered tx/sec, avg/last 3181.03/2862.32 kilobytes per sec, chain/common height 694357/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4213 tx/sec, 0 pre-filtered tx/sec, avg/last 3185.50/2686.16 kilobytes per sec, chain/common height 694359/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:26 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694362, date 2021-08-05T19:57:51Z, hash 0000000000000000000811539247e35e9bb68c9d051b9e35c799ff3985f0e01a
07:45:26 [Wallet autosave thread] WalletFiles - Save completed in 13.73 ms
07:45:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4396 tx/sec, 0 pre-filtered tx/sec, avg/last 3239.78/2828.56 kilobytes per sec, chain/common height 694362/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2716 tx/sec, 0 pre-filtered tx/sec, avg/last 3241.60/2793.23 kilobytes per sec, chain/common height 694366/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4275 tx/sec, 0 pre-filtered tx/sec, avg/last 3154.31/2515.92 kilobytes per sec, chain/common height 694368/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4128 tx/sec, 0 pre-filtered tx/sec, avg/last 3170.19/1972.38 kilobytes per sec, chain/common height 694371/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:29 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694371, date 2021-08-05T20:53:09Z, hash 00000000000000000006ca1c163adc70b6598a7f9bc6a4f701e41acdb473143c
07:45:29 [Wallet autosave thread] WalletFiles - Save completed in 59.97 ms
07:45:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2584 tx/sec, 0 pre-filtered tx/sec, avg/last 3098.09/1396.80 kilobytes per sec, chain/common height 694374/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4407 tx/sec, 0 pre-filtered tx/sec, avg/last 3009.62/2621.27 kilobytes per sec, chain/common height 694376/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2662 tx/sec, 0 pre-filtered tx/sec, avg/last 2859.68/1570.33 kilobytes per sec, chain/common height 694378/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:32 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694378, date 2021-08-05T21:36:25Z, hash 00000000000000000005fca6f389cf7531f51705332858785f63166db6237893
07:45:32 [Wallet autosave thread] WalletFiles - Save completed in 20.71 ms
07:45:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2298 tx/sec, 0 pre-filtered tx/sec, avg/last 2792.67/1363.92 kilobytes per sec, chain/common height 694379/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2250 tx/sec, 0 pre-filtered tx/sec, avg/last 2663.66/1487.46 kilobytes per sec, chain/common height 694380/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 2431.41/0.00 kilobytes per sec, chain/common height 694380/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:36 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694382, date 2021-08-05T22:22:33Z, hash 0000000000000000000683002a321fd9a32f5e68a19ea070ba344f54433f4345
07:45:36 [Wallet autosave thread] WalletFiles - Save completed in 16.04 ms
07:45:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3748 tx/sec, 0 pre-filtered tx/sec, avg/last 2339.05/2614.41 kilobytes per sec, chain/common height 694382/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2533 tx/sec, 0 pre-filtered tx/sec, avg/last 2349.04/1377.58 kilobytes per sec, chain/common height 694383/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2587 tx/sec, 0 pre-filtered tx/sec, avg/last 2235.43/1406.40 kilobytes per sec, chain/common height 694384/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 2057.90/0.00 kilobytes per sec, chain/common height 694384/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:40 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694384, date 2021-08-05T22:52:46Z, hash 0000000000000000000e47b8ce46be31ee759975e834ec4bc4b6ab667038a0e2
07:45:40 [Wallet autosave thread] WalletFiles - Save completed in 24.85 ms
07:45:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3083 tx/sec, 0 pre-filtered tx/sec, avg/last 1928.86/1722.98 kilobytes per sec, chain/common height 694386/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 965 tx/sec, 0 pre-filtered tx/sec, avg/last 1812.25/470.32 kilobytes per sec, chain/common height 694388/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1743.05/0.00 kilobytes per sec, chain/common height 694388/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:43 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694389, date 2021-08-05T23:49:47Z, hash 000000000000000000075d2b8da538dc1c32c48fbea380440f03ea98ff657374
07:45:43 [Wallet autosave thread] WalletFiles - Save completed in 12.64 ms
07:45:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2589 tx/sec, 0 pre-filtered tx/sec, avg/last 1656.35/1436.91 kilobytes per sec, chain/common height 694389/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1513.23/0.00 kilobytes per sec, chain/common height 694389/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2164 tx/sec, 0 pre-filtered tx/sec, avg/last 1445.87/1338.99 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1304.45/0.00 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1164.78/0.00 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:47 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694390, date 2021-08-06T00:15:50Z, hash 0000000000000000001207c7842206e2c0d7553bde4891e42c5203a398d8b46b
07:45:47 [Wallet autosave thread] WalletFiles - Save completed in 45.72 ms
07:45:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1038.99/0.00 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 940.37/0.00 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 870.53/0.00 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 739.46/0.00 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 660.95/0.00 kilobytes per sec, chain/common height 694390/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2628 tx/sec, 0 pre-filtered tx/sec, avg/last 665.94/1463.75 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 591.57/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 591.57/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:56 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694391, date 2021-08-06T00:24:01Z, hash 0000000000000000000c9b6aa49335cee208372db303cc1a43d2a79c22f93773
07:45:56 [Wallet autosave thread] WalletFiles - Save completed in 36.56 ms
07:45:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 460.85/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 391.97/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 321.65/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:45:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 321.65/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 235.50/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 211.98/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 211.98/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 140.14/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 140.14/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.19/0.00 kilobytes per sec, chain/common height 694391/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 0.00/0.00 kilobytes per sec, chain/common height 694391/694918, STALLED (threshold <0.78 KB/sec for 20 seconds)
07:46:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - Chain download stalled: received 0.00 KB/sec for 20 seconds, require average of 0.78 KB/sec, disconnecting Peer{[178.238.233.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}, 2 stalls left
07:46:13 [PeerGroup Thread] PeerGroup - [178.238.233.75]:8333: Peer died (5 connected, 0 pending, 6 max)
07:46:13 [PeerGroup Thread] PeerGroup - Download peer died. Picking a new one.
07:46:13 [PeerGroup Thread] PeerGroup - Unsetting download peer: Peer{[178.238.233.75]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}
07:46:13 [PeerGroup Thread] PeerGroup - Setting download peer: Peer{[2.32.38.166]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}
07:46:13 [PeerGroup Thread] PeerGroup - Waiting 2248 ms before next connect attempt to [78.153.4.77]:8333
07:46:15 [PeerGroup Thread] PeerGroup - Attempting connection to [188.214.128.18]:8333 (5 connected, 1 pending, 6 max)
07:46:16 [NioClientManager] NioClientManager - Connected to /188.214.128.18:8333
07:46:16 [NioClientManager] Peer - Announcing to /188.214.128.18:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:46:16 [NioClientManager] Peer - Peer{[188.214.128.18]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:16, height=694918}
07:46:16 [NioClientManager] PeerGroup - Peer{[188.214.128.18]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:16, height=694918}: New peer (6 connected, 0 pending, 6 max)
07:46:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 0.31/0.00 kilobytes per sec, chain/common height 694391/694918, STALLED (threshold <0.78 KB/sec for 20 seconds)
07:46:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - Chain download stalled: received 0.31 KB/sec for 20 seconds, require average of 0.78 KB/sec, disconnecting Peer{[2.32.38.166]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}, 1 stalls left
07:46:29 [PeerGroup Thread] PeerGroup - [2.32.38.166]:8333: Peer died (5 connected, 0 pending, 6 max)
07:46:29 [PeerGroup Thread] PeerGroup - Download peer died. Picking a new one.
07:46:29 [PeerGroup Thread] PeerGroup - Unsetting download peer: Peer{[2.32.38.166]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:35, height=694918}
07:46:29 [PeerGroup Thread] PeerGroup - Setting download peer: Peer{[35.228.238.236]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:46:29 [PeerGroup Thread] PeerGroup - Waiting 999 ms before next connect attempt to [78.153.4.77]:8333
07:46:30 [PeerGroup Thread] PeerGroup - Attempting connection to [78.46.86.12]:8333 (5 connected, 1 pending, 6 max)
07:46:30 [NioClientManager] NioClientManager - Connected to seed.btc.petertodd.org/78.46.86.12:8333
07:46:30 [NioClientManager] Peer - Announcing to seed.btc.petertodd.org/78.46.86.12:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:46:31 [NioClientManager] Peer - Peer{[78.46.86.12]:8333, version=70015, subVer=/Satoshi:0.16.0/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:31, height=694918}
07:46:31 [NioClientManager] PeerGroup - Peer{[78.46.86.12]:8333, version=70015, subVer=/Satoshi:0.16.0/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:31, height=694918}: New peer (6 connected, 0 pending, 6 max)
07:46:31 [NioClientManager] PeerGroup - [78.46.86.12]:8333: Peer died (5 connected, 0 pending, 6 max)
07:46:31 [PeerGroup Thread] PeerGroup - Waiting 999 ms before next connect attempt to [78.153.4.77]:8333
07:46:32 [PeerGroup Thread] PeerGroup - Attempting connection to [2a01:4f9:4b:2517::2]:8333 (5 connected, 1 pending, 6 max)
07:46:32 [PeerGroup Thread] PeerGroup - Failed to connect to [2a01:4f9:4b:2517::2]:8333: Network is unreachable
07:46:32 [PeerGroup Thread] PeerGroup - [2a01:4f9:4b:2517::2]:8333: Peer died (5 connected, 0 pending, 6 max)
07:46:32 [PeerGroup Thread] PeerGroup - Waiting 1496 ms before next connect attempt to [78.153.4.77]:8333
07:46:32 [PeerGroup Thread] PeerGroup - Waiting 1494 ms before next connect attempt to [201.67.212.156]:8333
07:46:33 [PeerGroup Thread] PeerGroup - Attempting connection to [78.153.4.77]:8333 (5 connected, 1 pending, 6 max)
07:46:33 [PeerGroup Thread] PeerGroup - Attempting connection to [201.67.212.156]:8333 (5 connected, 2 pending, 6 max)
07:46:34 [NioClientManager] NioClientManager - Connected to seed.btc.petertodd.org/201.67.212.156:8333
07:46:34 [NioClientManager] Peer - Announcing to seed.btc.petertodd.org/201.67.212.156:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:46:34 [NioClientManager] Peer - Peer{[201.67.212.156]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:34, height=694918}
07:46:34 [NioClientManager] PeerGroup - Peer{[201.67.212.156]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:34, height=694918}: New peer (6 connected, 1 pending, 6 max)
07:46:35 [NioClientManager] PeerGroup - [201.67.212.156]:8333: Peer died (5 connected, 1 pending, 6 max)
07:46:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2006 tx/sec, 0 pre-filtered tx/sec, avg/last 61.87/1218.69 kilobytes per sec, chain/common height 694392/694918 (warming up 7 more seconds)
07:46:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 1586 tx/sec, 0 pre-filtered tx/sec, avg/last 102.68/817.73 kilobytes per sec, chain/common height 694395/694918 (warming up 6 more seconds)
07:46:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2349 tx/sec, 0 pre-filtered tx/sec, avg/last 168.12/1310.30 kilobytes per sec, chain/common height 694397/694918 (warming up 5 more seconds)
07:46:40 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694399, date 2021-08-06T01:01:44Z, hash 0000000000000000000e711e6f7f56efcc44d131d4cdbad6a5ca9789be8598a3
07:46:40 [Wallet autosave thread] WalletFiles - Save completed in 39.26 ms
07:46:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3258 tx/sec, 0 pre-filtered tx/sec, avg/last 266.03/1959.76 kilobytes per sec, chain/common height 694401/694918 (warming up 4 more seconds)
07:46:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 933 tx/sec, 0 pre-filtered tx/sec, avg/last 294.50/571.00 kilobytes per sec, chain/common height 694402/694918 (warming up 3 more seconds)
07:46:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4366 tx/sec, 0 pre-filtered tx/sec, avg/last 408.63/2284.09 kilobytes per sec, chain/common height 694404/694918 (warming up 2 more seconds)
07:46:43 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694406, date 2021-08-06T02:19:20Z, hash 0000000000000000000c685f52a06a7a62612275d7564617f4fb59b2e81ed923
07:46:43 [Wallet autosave thread] WalletFiles - Save completed in 28.84 ms
07:46:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2153 tx/sec, 0 pre-filtered tx/sec, avg/last 487.39/1576.96 kilobytes per sec, chain/common height 694406/694918 (warming up 1 more seconds)
07:46:43 [NioClientManager] PeerGroup - [35.228.238.236]:8333: Peer died (4 connected, 1 pending, 6 max)
07:46:43 [NioClientManager] PeerGroup - Download peer died. Picking a new one.
07:46:43 [NioClientManager] PeerGroup - Unsetting download peer: Peer{[35.228.238.236]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:46:43 [NioClientManager] PeerGroup - Setting download peer: Peer{[213.189.185.198]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:46:43 [PeerGroup Thread] PeerGroup - Waiting 1500 ms before next connect attempt to [78.34.61.76]:8333
07:46:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2462 tx/sec, 0 pre-filtered tx/sec, avg/last 557.98/1413.35 kilobytes per sec, chain/common height 694407/694918 (warming up 0 more seconds)
07:46:45 [NioClientManager] PeerGroup - [151.101.1.195]:8333: Peer died (4 connected, 1 pending, 6 max)
07:46:45 [PeerGroup Thread] PeerGroup - Waiting 2248 ms before next connect attempt to [74.220.255.190]:8333
07:46:45 [NioClientManager] NioClientManager - Failed to connect with exception: java.nio.channels.ClosedChannelException: null
java.nio.channels.ClosedChannelException: null
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:741)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:64)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:45 [PeerGroup Thread] PeerGroup - Waiting 2205 ms before next connect attempt to [148.66.50.234]:8333
07:46:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.91/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.83/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:46 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694407, date 2021-08-06T02:52:44Z, hash 000000000000000000130881674b7359150d12e916c9b74c7cd4870e3cd7aee8
07:46:46 [Wallet autosave thread] WalletFiles - Save completed in 15.49 ms
07:46:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.75/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:47 [PeerGroup Thread] PeerGroup - Attempting connection to [74.220.255.190]:8333 (4 connected, 2 pending, 6 max)
07:46:47 [PeerGroup Thread] PeerGroup - Attempting connection to [148.66.50.234]:8333 (4 connected, 3 pending, 6 max)
07:46:47 [NioClientManager] NioClientManager - Connected to seed.btc.petertodd.org/148.66.50.234:8333
07:46:47 [NioClientManager] Peer - Announcing to seed.btc.petertodd.org/148.66.50.234:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:46:47 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/74.220.255.190:8333
07:46:47 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/74.220.255.190:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:46:48 [NioClientManager] Peer - Peer{[148.66.50.234]:8333, version=70015, subVer=/Satoshi:0.20.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:48, height=694918}
07:46:48 [NioClientManager] PeerGroup - Peer{[148.66.50.234]:8333, version=70015, subVer=/Satoshi:0.20.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:48, height=694918}: New peer (5 connected, 2 pending, 6 max)
07:46:48 [NioClientManager] Peer - Peer{[74.220.255.190]:8333, version=70015, subVer=/Satoshi:0.18.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:49, height=694918}
07:46:48 [NioClientManager] PeerGroup - Peer{[74.220.255.190]:8333, version=70015, subVer=/Satoshi:0.18.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:46:49, height=694918}: New peer (6 connected, 1 pending, 6 max)
07:46:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.67/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:48 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [78.153.4.77]:8333: Timed out
07:46:48 [AbstractTimeoutHandler timeouts] PeerGroup - [78.153.4.77]:8333: Peer died (6 connected, 0 pending, 6 max)
07:46:49 [NioClientManager] PeerGroup - [148.66.50.234]:8333: Peer died (5 connected, 0 pending, 6 max)
07:46:49 [PeerGroup Thread] PeerGroup - Waiting 1500 ms before next connect attempt to [78.34.61.76]:8333
07:46:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.59/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.59/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:50 [PeerGroup Thread] PeerGroup - Attempting connection to [34.90.104.47]:8333 (5 connected, 1 pending, 6 max)
07:46:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.59/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.59/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.59/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 557.59/0.00 kilobytes per sec, chain/common height 694407/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:46:54 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:54 [NioClientManager] PeerGroup - [95.216.28.167]:8333: Peer died (4 connected, 1 pending, 6 max)
07:46:54 [PeerGroup Thread] PeerGroup - Waiting 2250 ms before next connect attempt to [78.34.61.76]:8333
07:46:54 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:54 [NioClientManager] PeerGroup - [171.96.110.239]:8333: Peer died (3 connected, 1 pending, 6 max)
07:46:54 [PeerGroup Thread] PeerGroup - Waiting 3374 ms before next connect attempt to [83.22.246.205]:8333
07:46:54 [NioClientManager] PeerGroup - [78.153.4.77]:8333: Peer died (3 connected, 1 pending, 6 max)
07:46:54 [NioClientManager] NioClientManager - Failed to connect with exception: java.nio.channels.ClosedChannelException: null
java.nio.channels.ClosedChannelException: null
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:741)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:64)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:54 [PeerGroup Thread] PeerGroup - Waiting 5061 ms before next connect attempt to [202.55.87.45]:8333
07:46:54 [NioClientManager] NioClientManager - Failed to connect with exception: java.net.SocketException: Software caused connection abort
java.net.SocketException: Software caused connection abort
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:762)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:64)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:54 [NioClientManager] PeerGroup - [34.90.104.47]:8333: Peer died (3 connected, 0 pending, 6 max)
07:46:54 [PeerGroup Thread] PeerGroup - Waiting 7591 ms before next connect attempt to [188.243.9.72]:8333
07:46:54 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:54 [NioClientManager] PeerGroup - [74.220.255.190]:8333: Peer died (2 connected, 0 pending, 6 max)
07:46:54 [PeerGroup Thread] PeerGroup - Waiting 10000 ms before next connect attempt to [217.64.133.220]:8333
07:46:54 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:54 [NioClientManager] PeerGroup - [188.214.128.18]:8333: Peer died (1 connected, 0 pending, 6 max)
07:46:54 [PeerGroup Thread] PeerGroup - Waiting 10000 ms before next connect attempt to [103.37.205.47]:8333
07:46:54 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:46:54 [NioClientManager] PeerGroup - [213.189.185.198]:8333: Peer died (0 connected, 0 pending, 6 max)
07:46:54 [NioClientManager] PeerGroup - Download peer died. Picking a new one.
07:46:54 [NioClientManager] PeerGroup - Unsetting download peer: Peer{[213.189.185.198]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:44:36, height=694918}
07:46:54 [PeerGroup Thread] PeerGroup - Waiting 10000 ms before next connect attempt to [217.225.190.205]:8333
07:46:54 [main] BlockchainService - active network is down
07:46:54 [main] BlockchainService - stopping org.bitcoinj.core.PeerGroup@abcc89b asynchronously
07:46:54 [PeerGroup Thread] PeerGroup - Stopping ...
07:46:54 [PeerGroup Thread] PeerGroup - Stopped, took 8.129 ms.
07:46:56 [main] BlockchainService - active network is up, metered, type: MOBILE, state: CONNECTED/CONNECTED, extraInfo: m3-world
07:46:56 [main] BlockchainService - creating org.bitcoinj.core.PeerGroup@fa9d1e9, sync mode: FULL
07:46:56 [main] BlockchainService - adding random peers from the P2P network
07:46:56 [main] BlockchainService - starting org.bitcoinj.core.PeerGroup@fa9d1e9 asynchronously
07:46:56 [PeerGroup Thread] PeerGroup - Starting ...
07:46:56 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://lightning-wallet.com:8081/peers?srvmask=8
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoinstats.com
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.jonasschnelli.ch
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sipa.be
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bluematt.me
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.btc.petertodd.org
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sprovoost.nl
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.emzy.de
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bitcoin.dashjr.org
07:46:56 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
07:46:56 [main] BlockchainService - trusted peer '176.194.148.90,' unknown host
07:46:56 [Multiplexing discovery] DnsDiscovery - Seed seed.btc.petertodd.org doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.btc.petertodd.org": No address associated with hostname
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.btc.petertodd.org
07:46:56 [main] BlockchainService - trusted peer '3.129.216.175,' unknown host
07:46:56 [Multiplexing discovery] DnsDiscovery - Got 21 peers from x8.dnsseed.bluematt.me
07:46:56 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.jonasschnelli.ch doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.jonasschnelli.ch": No address associated with hostname
07:46:56 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.jonasschnelli.ch
07:46:57 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.btc.petertodd.org
07:46:57 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.sipa.be doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.sipa.be": No address associated with hostname
07:46:57 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sipa.be
07:46:57 [Multiplexing discovery] DnsDiscovery - Seed dnsseed.bitcoin.dashjr.org doesn't appear to support service bit filtering: Unable to resolve host "x8.dnsseed.bitcoin.dashjr.org": No address associated with hostname
07:46:57 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.bitcoin.dashjr.org
07:46:57 [main] BlockchainService - trusted peer '104.16.40.77,' unknown host
07:46:57 [Multiplexing discovery] DnsDiscovery - Got 25 peers from x8.seed.bitcoinstats.com
07:46:57 [main] BlockchainService - trusted peer '3.209.12.198,' unknown host
07:46:57 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.bitcoin.jonasschnelli.ch
07:46:57 [main] BlockchainService - trusted peer '151.101.65.195,' unknown host
07:46:57 [main] BlockchainService - trusted peer '151.101.1.195' resolved to 151.101.1.195
07:46:57 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.sprovoost.nl doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.sprovoost.nl": No address associated with hostname
07:46:57 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sprovoost.nl
07:46:57 [Multiplexing discovery] DnsDiscovery - Got 25 peers from seed.bitcoin.sipa.be
07:46:57 [Multiplexing discovery] DnsDiscovery - Seed dnsseed.emzy.de doesn't appear to support service bit filtering: Unable to resolve host "x8.dnsseed.emzy.de": No address associated with hostname
07:46:57 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.emzy.de
07:46:57 [Multiplexing discovery] HttpDiscovery - Got 30 peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
07:46:57 [main] BlockchainService - trusted peer '15.236.224.135,' unknown host
07:46:57 [Multiplexing discovery] DnsDiscovery - Got 23 peers from dnsseed.bitcoin.dashjr.org
07:47:01 [PeerGroup Thread] MultiplexingDiscovery - Seed org.bitcoinj.net.discovery.HttpDiscovery@fa03fa0: failed to look up: org.bitcoinj.net.discovery.PeerDiscoveryException: java.net.ConnectException: Failed to connect to lightning-wallet.com/5.9.83.143:8081
07:47:01 [PeerGroup Thread] MultiplexingDiscovery - Seed seed.bitcoin.sprovoost.nl: timed out
07:47:01 [PeerGroup Thread] MultiplexingDiscovery - Seed dnsseed.emzy.de: timed out
07:47:01 [PeerGroup Thread] PeerGroup - Peer discovery took 5.011 s and returned 172 items from 1 discoverers
07:47:01 [PeerGroup Thread] PeerGroup - Waiting 6012 ms before next connect attempt to [151.101.1.195]:8333
07:47:01 [PeerGroup Thread] PeerGroup - Waiting 998 ms before next connect attempt to [151.101.1.195]:8333
07:47:01 [PeerGroup Thread] PeerGroup - Waiting 998 ms before next connect attempt to [151.101.1.195]:8333
07:47:02 [PeerGroup Thread] PeerGroup - Attempting connection to [151.101.1.195]:8333 (0 connected, 1 pending, 6 max)
07:47:02 [PeerGroup Thread] PeerGroup - Attempting connection to [83.11.107.189]:8333 (0 connected, 2 pending, 6 max)
07:47:02 [PeerGroup Thread] PeerGroup - Attempting connection to [46.23.87.218]:8333 (0 connected, 3 pending, 6 max)
07:47:02 [PeerGroup Thread] PeerGroup - Attempting connection to [89.230.96.42]:8333 (0 connected, 4 pending, 6 max)
07:47:02 [PeerGroup Thread] PeerGroup - Attempting connection to [185.107.15.161]:8333 (0 connected, 5 pending, 6 max)
07:47:02 [PeerGroup Thread] PeerGroup - Attempting connection to [178.254.35.104]:8333 (0 connected, 6 pending, 6 max)
07:47:02 [PeerGroup Thread] PeerGroup - Attempting connection to [188.243.9.72]:8333 (0 connected, 7 pending, 6 max)
07:47:05 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [34.90.104.47]:8333: Timed out
07:47:07 [PeerGroup Thread] PeerGroup - Attempting connection to [213.219.145.210]:8333 (0 connected, 8 pending, 6 max)
07:47:09 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/46.23.87.218:8333
07:47:09 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/46.23.87.218:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:47:09 [NioClientManager] NioClientManager - Connected to dnsseed.bitcoin.dashjr.org/178.254.35.104:8333
07:47:09 [NioClientManager] Peer - Announcing to dnsseed.bitcoin.dashjr.org/178.254.35.104:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:47:09 [NioClientManager] NioClientManager - Connected to x8.dnsseed.bluematt.me/213.219.145.210:8333
07:47:09 [NioClientManager] Peer - Announcing to x8.dnsseed.bluematt.me/213.219.145.210:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:47:09 [NioClientManager] NioClientManager - Connected to x8.dnsseed.bluematt.me/185.107.15.161:8333
07:47:09 [NioClientManager] Peer - Announcing to x8.dnsseed.bluematt.me/185.107.15.161:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:47:09 [NioClientManager] NioClientManager - Connected to x8.dnsseed.bluematt.me/89.230.96.42:8333
07:47:09 [NioClientManager] Peer - Announcing to x8.dnsseed.bluematt.me/89.230.96.42:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:47:09 [NioClientManager] Peer - Peer{[46.23.87.218]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:47:09 [NioClientManager] PeerGroup - Peer{[46.23.87.218]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}: New peer (1 connected, 7 pending, 6 max)
07:47:09 [NioClientManager] Peer - Peer{[178.254.35.104]:8333, version=70015, subVer=/Satoshi:0.19.1/, services=1032 (WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:47:09 [NioClientManager] PeerGroup - Peer{[178.254.35.104]:8333, version=70015, subVer=/Satoshi:0.19.1/, services=1032 (WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}: New peer (2 connected, 6 pending, 6 max)
07:47:09 [NioClientManager] Peer - Peer{[89.230.96.42]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:47:09 [NioClientManager] PeerGroup - Peer{[89.230.96.42]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}: New peer (3 connected, 5 pending, 6 max)
07:47:10 [NioClientManager] Peer - Peer{[213.219.145.210]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:47:10 [NioClientManager] PeerGroup - Peer{[213.219.145.210]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}: New peer (4 connected, 4 pending, 6 max)
07:47:10 [NioClientManager] PeerGroup - Setting download peer: Peer{[89.230.96.42]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:47:10 [NioClientManager] Peer - Peer{[185.107.15.161]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:47:10 [NioClientManager] PeerGroup - Peer{[185.107.15.161]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}: New peer (5 connected, 3 pending, 6 max)
07:47:15 [main] BlockchainService - trusted peer '13.53.40.179,' unknown host
07:47:15 [Multiplexing discovery] DnsDiscovery - Got 26 peers from dnsseed.emzy.de
07:47:15 [Multiplexing discovery] DnsDiscovery - Got 23 peers from seed.bitcoin.sprovoost.nl
07:47:15 [main] BlockchainService - trusted peer '34.87.232.92,' unknown host
07:47:15 [main] BlockchainService - trusted peer '104.18.93.71,' unknown host
07:47:17 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [151.101.1.195]:8333: Timed out
07:47:17 [AbstractTimeoutHandler timeouts] PeerGroup - [151.101.1.195]:8333: Peer died (5 connected, 2 pending, 6 max)
07:47:17 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [83.11.107.189]:8333: Timed out
07:47:17 [AbstractTimeoutHandler timeouts] PeerGroup - [83.11.107.189]:8333: Peer died (5 connected, 1 pending, 6 max)
07:47:17 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [188.243.9.72]:8333: Timed out
07:47:17 [AbstractTimeoutHandler timeouts] PeerGroup - [188.243.9.72]:8333: Peer died (5 connected, 0 pending, 6 max)
07:47:17 [PeerGroup Thread] PeerGroup - Waiting 2250 ms before next connect attempt to [65.21.73.164]:8333
07:47:19 [PeerGroup Thread] PeerGroup - Attempting connection to [163.172.214.148]:8333 (5 connected, 1 pending, 6 max)
07:47:20 [NioClientManager] NioClientManager - Connected to dnsseed.bitcoin.dashjr.org/163.172.214.148:8333
07:47:20 [NioClientManager] Peer - Announcing to dnsseed.bitcoin.dashjr.org/163.172.214.148:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:47:20 [NioClientManager] Peer - Peer{[163.172.214.148]:8333, version=70015, subVer=/Satoshi:0.19.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:20, height=694918}
07:47:20 [NioClientManager] PeerGroup - Peer{[163.172.214.148]:8333, version=70015, subVer=/Satoshi:0.19.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:20, height=694918}: New peer (6 connected, 0 pending, 6 max)
07:47:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1702 tx/sec, 0 pre-filtered tx/sec, avg/last 73.56/1464.91 kilobytes per sec, chain/common height 694408/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.48/0.00 kilobytes per sec, chain/common height 694408/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.40/0.00 kilobytes per sec, chain/common height 694408/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:28 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694408, date 2021-08-06T03:03:27Z, hash 0000000000000000000676957f52d117e4f9df1afde55b608ce2f4232e53cb45
07:47:28 [Wallet autosave thread] WalletFiles - Save completed in 25.58 ms
07:47:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 73.32/0.00 kilobytes per sec, chain/common height 694408/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1235 tx/sec, 0 pre-filtered tx/sec, avg/last 135.56/1246.32 kilobytes per sec, chain/common height 694409/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 135.56/0.00 kilobytes per sec, chain/common height 694409/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 734 tx/sec, 0 pre-filtered tx/sec, avg/last 158.46/457.88 kilobytes per sec, chain/common height 694410/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:32 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694412, date 2021-08-06T03:21:53Z, hash 0000000000000000000afa10fec618df75db9b8af26c74328a309800f6f373a9
07:47:32 [Wallet autosave thread] WalletFiles - Save completed in 35.08 ms
07:47:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 550 tx/sec, 0 pre-filtered tx/sec, avg/last 186.20/554.98 kilobytes per sec, chain/common height 694412/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 186.20/0.00 kilobytes per sec, chain/common height 694412/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 186.20/0.00 kilobytes per sec, chain/common height 694412/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 186.20/0.00 kilobytes per sec, chain/common height 694412/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 186.20/0.00 kilobytes per sec, chain/common height 694412/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2591 tx/sec, 0 pre-filtered tx/sec, avg/last 255.72/1390.33 kilobytes per sec, chain/common height 694413/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 255.72/0.00 kilobytes per sec, chain/common height 694413/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 255.72/0.00 kilobytes per sec, chain/common height 694413/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:40 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694413, date 2021-08-06T04:02:12Z, hash 0000000000000000000a44e469bddb8366346d52545c83c0992657076caa9ea2
07:47:40 [Wallet autosave thread] WalletFiles - Save completed in 29.04 ms
07:47:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 255.72/0.00 kilobytes per sec, chain/common height 694413/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1527 tx/sec, 0 pre-filtered tx/sec, avg/last 319.50/1275.68 kilobytes per sec, chain/common height 694414/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 319.50/0.00 kilobytes per sec, chain/common height 694414/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 319.50/0.00 kilobytes per sec, chain/common height 694414/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:44 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694414, date 2021-08-06T04:05:07Z, hash 00000000000000000000fb8c9b405cddb160114144661d515ff3ca684c8a9662
07:47:44 [Wallet autosave thread] WalletFiles - Save completed in 28.64 ms
07:47:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 319.50/0.00 kilobytes per sec, chain/common height 694414/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 246.26/0.00 kilobytes per sec, chain/common height 694414/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 246.26/0.00 kilobytes per sec, chain/common height 694414/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 246.26/0.00 kilobytes per sec, chain/common height 694414/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 246.26/0.00 kilobytes per sec, chain/common height 694415/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2477 tx/sec, 0 pre-filtered tx/sec, avg/last 261.04/1542.01 kilobytes per sec, chain/common height 694415/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 261.04/0.00 kilobytes per sec, chain/common height 694415/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 238.15/0.00 kilobytes per sec, chain/common height 694415/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:52 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694415, date 2021-08-06T04:27:31Z, hash 00000000000000000011fbbf399dd4e581b616117b62b81f5074c3a251854609
07:47:52 [Wallet autosave thread] WalletFiles - Save completed in 27.26 ms
07:47:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 266 tx/sec, 0 pre-filtered tx/sec, avg/last 241.78/627.67 kilobytes per sec, chain/common height 694416/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 241.78/0.00 kilobytes per sec, chain/common height 694416/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 241.78/0.00 kilobytes per sec, chain/common height 694416/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:55 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694416, date 2021-08-06T04:28:17Z, hash 0000000000000000000a1c26dcbf099d590f08413c45d0bdc39f2fa000b40e54
07:47:55 [Wallet autosave thread] WalletFiles - Save completed in 27.15 ms
07:47:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 241.78/0.00 kilobytes per sec, chain/common height 694416/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 241.78/0.00 kilobytes per sec, chain/common height 694416/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 172.27/0.00 kilobytes per sec, chain/common height 694416/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:47:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 277 tx/sec, 0 pre-filtered tx/sec, avg/last 187.95/313.58 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 187.95/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 187.95/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:01 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694417, date 2021-08-06T04:30:54Z, hash 000000000000000000095d28bef35257ca9189bbab9ac5d30905823c9c85cfd1
07:48:01 [Wallet autosave thread] WalletFiles - Save completed in 16.81 ms
07:48:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 124.16/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 47.06/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 47.06/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 47.06/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 15.68/0.00 kilobytes per sec, chain/common height 694417/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2157 tx/sec, 0 pre-filtered tx/sec, avg/last 85.27/1391.79 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 85.27/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 85.27/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694418, date 2021-08-06T04:51:42Z, hash 0000000000000000000912afa05d9d604e956d720a751480f0658ac0f1fe73f4
07:48:16 [Wallet autosave thread] WalletFiles - Save completed in 24.58 ms
07:48:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 85.27/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 85.27/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 69.59/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 69.59/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 69.59/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 69.59/0.00 kilobytes per sec, chain/common height 694418/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 250 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/1012.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:25 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694419, date 2021-08-06T04:53:25Z, hash 0000000000000000000932e25a94ccefedd9f341f7c1004243a5d93d537dd40f
07:48:25 [Wallet autosave thread] WalletFiles - Save completed in 18.23 ms
07:48:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 120.19/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 50.60/0.00 kilobytes per sec, chain/common height 694419/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1641 tx/sec, 0 pre-filtered tx/sec, avg/last 116.60/1319.98 kilobytes per sec, chain/common height 694420/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 116.60/0.00 kilobytes per sec, chain/common height 694420/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 965 tx/sec, 0 pre-filtered tx/sec, avg/last 148.12/630.42 kilobytes per sec, chain/common height 694421/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:37 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694421, date 2021-08-06T05:14:13Z, hash 0000000000000000000809728f75c56d0364dba5f2c6e6d61530345339127887
07:48:37 [Wallet autosave thread] WalletFiles - Save completed in 45.13 ms
07:48:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 148.12/0.00 kilobytes per sec, chain/common height 694421/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 148.12/0.00 kilobytes per sec, chain/common height 694422/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 1403 tx/sec, 0 pre-filtered tx/sec, avg/last 186.69/771.47 kilobytes per sec, chain/common height 694424/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 402 tx/sec, 0 pre-filtered tx/sec, avg/last 195.96/185.35 kilobytes per sec, chain/common height 694425/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 659 tx/sec, 0 pre-filtered tx/sec, avg/last 215.44/389.54 kilobytes per sec, chain/common height 694426/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:42 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694426, date 2021-08-06T05:35:29Z, hash 00000000000000000006a25fcbb78ef2444cdc5cd69e0a47e79947f269b4b0e6
07:48:42 [Wallet autosave thread] WalletFiles - Save completed in 20.41 ms
07:48:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 427 tx/sec, 0 pre-filtered tx/sec, avg/last 176.14/226.07 kilobytes per sec, chain/common height 694428/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 193 tx/sec, 0 pre-filtered tx/sec, avg/last 181.45/106.08 kilobytes per sec, chain/common height 694429/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 870 tx/sec, 0 pre-filtered tx/sec, avg/last 201.86/408.27 kilobytes per sec, chain/common height 694431/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:45 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694432, date 2021-08-06T05:48:39Z, hash 000000000000000000122d61bf09fc7fcd4cef9e9ba35e692cb6c5c15cbce299
07:48:45 [Wallet autosave thread] WalletFiles - Save completed in 16.02 ms
07:48:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 171 tx/sec, 0 pre-filtered tx/sec, avg/last 205.57/74.13 kilobytes per sec, chain/common height 694432/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 609 tx/sec, 0 pre-filtered tx/sec, avg/last 223.17/352.02 kilobytes per sec, chain/common height 694434/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 223.17/0.00 kilobytes per sec, chain/common height 694434/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 223.17/0.00 kilobytes per sec, chain/common height 694434/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:49 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694434, date 2021-08-06T05:53:58Z, hash 0000000000000000000252f6af45abdc0edf68cc89bb3c53fbb1c51feeb69fa5
07:48:49 [Wallet autosave thread] WalletFiles - Save completed in 39.60 ms
07:48:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 869 tx/sec, 0 pre-filtered tx/sec, avg/last 249.49/526.46 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 249.49/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 249.49/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:52 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694435, date 2021-08-06T06:00:52Z, hash 00000000000000000003e4a05403b1f78530409bff4316a15b6be9d6751d44a7
07:48:52 [Wallet autosave thread] WalletFiles - Save completed in 25.49 ms
07:48:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 249.49/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 249.49/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 183.49/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 183.49/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 151.97/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 151.97/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 151.97/0.00 kilobytes per sec, chain/common height 694435/694918, not stalled (threshold <0.78 KB/sec for 20 seconds)
07:48:59 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] PeerGroup - [46.23.87.218]:8333: Peer died (5 connected, 0 pending, 6 max)
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 999 ms before next connect attempt to [65.21.73.164]:8333
07:48:59 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] PeerGroup - [89.230.96.42]:8333: Peer died (4 connected, 0 pending, 6 max)
07:48:59 [NioClientManager] PeerGroup - Download peer died. Picking a new one.
07:48:59 [NioClientManager] PeerGroup - Unsetting download peer: Peer{[89.230.96.42]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:48:59 [NioClientManager] PeerGroup - Setting download peer: Peer{[185.107.15.161]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 1500 ms before next connect attempt to [5.189.173.197]:8333
07:48:59 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] PeerGroup - [163.172.214.148]:8333: Peer died (3 connected, 0 pending, 6 max)
07:48:59 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] PeerGroup - [185.107.15.161]:8333: Peer died (2 connected, 0 pending, 6 max)
07:48:59 [NioClientManager] PeerGroup - Download peer died. Picking a new one.
07:48:59 [NioClientManager] PeerGroup - Unsetting download peer: Peer{[185.107.15.161]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:48:59 [NioClientManager] PeerGroup - Setting download peer: Peer{[213.219.145.210]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 3381 ms before next connect attempt to [54.199.185.62]:8333
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 3374 ms before next connect attempt to [13.79.6.157]:8333
07:48:59 [NioClientManager] PeerGroup - [83.11.107.189]:8333: Peer died (2 connected, 0 pending, 6 max)
07:48:59 [NioClientManager] NioClientManager - Failed to connect with exception: java.nio.channels.ClosedChannelException: null
java.nio.channels.ClosedChannelException: null
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:741)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:64)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 5061 ms before next connect attempt to [54.199.185.62]:8333
07:48:59 [NioClientManager] PeerGroup - [188.243.9.72]:8333: Peer died (2 connected, 0 pending, 6 max)
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 7592 ms before next connect attempt to [212.187.3.31]:8333
07:48:59 [NioClientManager] NioClientManager - Failed to connect with exception: java.nio.channels.ClosedChannelException: null
java.nio.channels.ClosedChannelException: null
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:741)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:64)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] PeerGroup - [178.254.35.104]:8333: Peer died (1 connected, 0 pending, 6 max)
07:48:59 [NioClientManager] PeerGroup - [151.101.1.195]:8333: Peer died (1 connected, 0 pending, 6 max)
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 10001 ms before next connect attempt to [80.229.139.205]:8333
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 10000 ms before next connect attempt to [73.168.103.27]:8333
07:48:59 [NioClientManager] NioClientManager - Failed to connect with exception: java.nio.channels.ClosedChannelException: null
java.nio.channels.ClosedChannelException: null
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:741)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:64)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] ConnectionHandler - Error handling SelectionKey: java.io.IOException Software caused connection abort
java.io.IOException: Software caused connection abort
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:421)
at org.bitcoinj.net.ConnectionHandler.handleKey(ConnectionHandler.java:227)
at org.bitcoinj.net.NioClientManager.handleKey(NioClientManager.java:86)
at org.bitcoinj.net.NioClientManager.run(NioClientManager.java:122)
at com.google.common.util.concurrent.AbstractExecutionThreadService$1$2.run(AbstractExecutionThreadService.java:65)
at com.google.common.util.concurrent.Callables$4.run(Callables.java:119)
at org.bitcoinj.utils.ContextPropagatingThreadFactory$1.run(ContextPropagatingThreadFactory.java:51)
at java.lang.Thread.run(Thread.java:923)
07:48:59 [NioClientManager] PeerGroup - [213.219.145.210]:8333: Peer died (0 connected, 0 pending, 6 max)
07:48:59 [NioClientManager] PeerGroup - Download peer died. Picking a new one.
07:48:59 [NioClientManager] PeerGroup - Unsetting download peer: Peer{[213.219.145.210]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:47:10, height=694918}
07:48:59 [PeerGroup Thread] PeerGroup - Waiting 10000 ms before next connect attempt to [88.81.119.185]:8333
07:48:59 [main] BlockchainService - active network is down
07:48:59 [main] BlockchainService - stopping org.bitcoinj.core.PeerGroup@fa9d1e9 asynchronously
07:48:59 [PeerGroup Thread] PeerGroup - Stopping ...
07:48:59 [PeerGroup Thread] PeerGroup - Stopped, took 609.8 μs.
07:49:01 [main] BlockchainService - active network is up, metered, type: MOBILE, state: CONNECTED/CONNECTED, extraInfo: m3-world
07:49:01 [main] BlockchainService - creating org.bitcoinj.core.PeerGroup@c4b8297, sync mode: FULL
07:49:01 [main] BlockchainService - adding random peers from the P2P network
07:49:01 [main] BlockchainService - starting org.bitcoinj.core.PeerGroup@c4b8297 asynchronously
07:49:01 [PeerGroup Thread] PeerGroup - Starting ...
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.btc.petertodd.org
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.jonasschnelli.ch
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.emzy.de
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bluematt.me
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sipa.be
07:49:01 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://lightning-wallet.com:8081/peers?srvmask=8
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sprovoost.nl
07:49:01 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoinstats.com
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bitcoin.dashjr.org
07:49:01 [Multiplexing discovery] DnsDiscovery - Seed seed.btc.petertodd.org doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.btc.petertodd.org": No address associated with hostname
07:49:01 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.btc.petertodd.org
07:49:01 [main] BlockchainService - trusted peer '176.194.148.90,' unknown host
07:49:02 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.jonasschnelli.ch doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.jonasschnelli.ch": No address associated with hostname
07:49:02 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.jonasschnelli.ch
07:49:02 [main] BlockchainService - trusted peer '3.129.216.175,' unknown host
07:49:02 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.btc.petertodd.org
07:49:02 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.sipa.be doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.sipa.be": No address associated with hostname
07:49:02 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sipa.be
07:49:02 [Multiplexing discovery] DnsDiscovery - Seed dnsseed.bitcoin.dashjr.org doesn't appear to support service bit filtering: Unable to resolve host "x8.dnsseed.bitcoin.dashjr.org": No address associated with hostname
07:49:02 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.bitcoin.dashjr.org
07:49:02 [Multiplexing discovery] DnsDiscovery - Got 21 peers from x8.dnsseed.bluematt.me
07:49:02 [main] BlockchainService - trusted peer '104.16.40.77,' unknown host
07:49:02 [Multiplexing discovery] DnsDiscovery - Seed dnsseed.emzy.de doesn't appear to support service bit filtering: Unable to resolve host "x8.dnsseed.emzy.de": No address associated with hostname
07:49:02 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.emzy.de
07:49:02 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.bitcoin.jonasschnelli.ch
07:49:02 [main] BlockchainService - trusted peer '3.209.12.198,' unknown host
07:49:02 [Multiplexing discovery] DnsDiscovery - Got 26 peers from dnsseed.emzy.de
07:49:02 [main] BlockchainService - trusted peer '151.101.65.195,' unknown host
07:49:02 [main] BlockchainService - trusted peer '151.101.1.195' resolved to 151.101.1.195
07:49:02 [Multiplexing discovery] DnsDiscovery - Got 25 peers from seed.bitcoin.sipa.be
07:49:02 [main] BlockchainService - trusted peer '15.236.224.135,' unknown host
07:49:02 [Multiplexing discovery] DnsDiscovery - Got 23 peers from dnsseed.bitcoin.dashjr.org
07:49:02 [main] BlockchainService - trusted peer '13.53.40.179,' unknown host
07:49:02 [main] BlockchainService - trusted peer '34.87.232.92,' unknown host
07:49:02 [main] BlockchainService - trusted peer '104.18.93.71,' unknown host
07:49:02 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoin.sprovoost.nl doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoin.sprovoost.nl": No address associated with hostname
07:49:02 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sprovoost.nl
07:49:02 [Multiplexing discovery] DnsDiscovery - Seed seed.bitcoinstats.com doesn't appear to support service bit filtering: Unable to resolve host "x8.seed.bitcoinstats.com": No address associated with hostname
07:49:02 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoinstats.com
07:49:03 [Multiplexing discovery] DnsDiscovery - Got 25 peers from seed.bitcoinstats.com
07:49:03 [Multiplexing discovery] DnsDiscovery - Got 23 peers from seed.bitcoin.sprovoost.nl
07:49:03 [Multiplexing discovery] HttpDiscovery - Got 30 peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
07:49:03 [PeerGroup Thread] MultiplexingDiscovery - Seed org.bitcoinj.net.discovery.HttpDiscovery@ddca3c6: failed to look up: org.bitcoinj.net.discovery.PeerDiscoveryException: java.net.ConnectException: Failed to connect to lightning-wallet.com/5.9.83.143:8081
07:49:03 [PeerGroup Thread] PeerGroup - Peer discovery took 1.744 s and returned 221 items from 1 discoverers
07:49:03 [PeerGroup Thread] PeerGroup - Waiting 2744 ms before next connect attempt to [151.101.1.195]:8333
07:49:03 [PeerGroup Thread] PeerGroup - Waiting 1000 ms before next connect attempt to [151.101.1.195]:8333
07:49:03 [PeerGroup Thread] PeerGroup - Waiting 1000 ms before next connect attempt to [151.101.1.195]:8333
07:49:04 [PeerGroup Thread] PeerGroup - Attempting connection to [151.101.1.195]:8333 (0 connected, 1 pending, 6 max)
07:49:04 [PeerGroup Thread] PeerGroup - Attempting connection to [136.243.6.5]:8333 (0 connected, 2 pending, 6 max)
07:49:04 [PeerGroup Thread] PeerGroup - Attempting connection to [157.90.106.242]:8333 (0 connected, 3 pending, 6 max)
07:49:04 [PeerGroup Thread] PeerGroup - Attempting connection to [37.1.200.82]:8333 (0 connected, 4 pending, 6 max)
07:49:04 [PeerGroup Thread] PeerGroup - Attempting connection to [88.129.253.94]:8333 (0 connected, 5 pending, 6 max)
07:49:04 [PeerGroup Thread] PeerGroup - Attempting connection to [95.208.203.223]:8333 (0 connected, 6 pending, 6 max)
07:49:04 [PeerGroup Thread] PeerGroup - Attempting connection to [91.209.70.247]:8333 (0 connected, 7 pending, 6 max)
07:49:04 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/157.90.106.242:8333
07:49:04 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/157.90.106.242:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:04 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/136.243.6.5:8333
07:49:04 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/136.243.6.5:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:04 [NioClientManager] NioClientManager - Connected to /37.1.200.82:8333
07:49:04 [NioClientManager] Peer - Announcing to /37.1.200.82:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:04 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/95.208.203.223:8333
07:49:04 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/95.208.203.223:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:04 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/91.209.70.247:8333
07:49:04 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/91.209.70.247:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:04 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sprovoost.nl/88.129.253.94:8333
07:49:04 [NioClientManager] Peer - Announcing to seed.bitcoin.sprovoost.nl/88.129.253.94:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:04 [NioClientManager] Peer - Peer{[157.90.106.242]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:05, height=694918}
07:49:04 [NioClientManager] PeerGroup - Peer{[157.90.106.242]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:05, height=694918}: New peer (1 connected, 6 pending, 6 max)
07:49:04 [NioClientManager] Peer - Peer{[136.243.6.5]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:03, height=694918}
07:49:04 [NioClientManager] PeerGroup - Peer{[136.243.6.5]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:03, height=694918}: New peer (2 connected, 5 pending, 6 max)
07:49:04 [NioClientManager] Peer - Peer{[37.1.200.82]:8333, version=70015, subVer=/Satoshi:0.19.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:04, height=694918}
07:49:04 [NioClientManager] PeerGroup - Peer{[37.1.200.82]:8333, version=70015, subVer=/Satoshi:0.19.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:04, height=694918}: New peer (3 connected, 4 pending, 6 max)
07:49:04 [NioClientManager] Peer - Peer{[95.208.203.223]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:48:48, height=694918}
07:49:04 [NioClientManager] PeerGroup - Peer{[95.208.203.223]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:48:48, height=694918}: New peer (4 connected, 3 pending, 6 max)
07:49:04 [NioClientManager] PeerGroup - Setting download peer: Peer{[157.90.106.242]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:05, height=694918}
07:49:04 [NioClientManager] Peer - Peer{[91.209.70.247]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:05, height=694918}
07:49:04 [NioClientManager] PeerGroup - Peer{[91.209.70.247]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:05, height=694918}: New peer (5 connected, 2 pending, 6 max)
07:49:05 [NioClientManager] Peer - Peer{[88.129.253.94]:8333, version=70015, subVer=/Satoshi:0.20.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:03, height=694918}
07:49:05 [NioClientManager] PeerGroup - Peer{[88.129.253.94]:8333, version=70015, subVer=/Satoshi:0.20.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:03, height=694918}: New peer (6 connected, 1 pending, 6 max)
07:49:05 [NioClientManager] PeerGroup - [136.243.6.5]:8333: Peer died (5 connected, 1 pending, 6 max)
07:49:06 [PeerGroup Thread] PeerGroup - Waiting 431 ms before next connect attempt to [3.238.8.21]:8333
07:49:06 [PeerGroup Thread] PeerGroup - Attempting connection to [34.243.139.60]:8333 (5 connected, 2 pending, 6 max)
07:49:06 [NioClientManager] NioClientManager - Connected to dnsseed.bitcoin.dashjr.org/34.243.139.60:8333
07:49:06 [NioClientManager] Peer - Announcing to dnsseed.bitcoin.dashjr.org/34.243.139.60:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 800 tx/sec, 0 pre-filtered tx/sec, avg/last 50.95/990.96 kilobytes per sec, chain/common height 694436/694918 (warming up 13 more seconds)
07:49:07 [NioClientManager] Peer - Peer{[34.243.139.60]:8333, version=70015, subVer=/Satoshi:0.19.0.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:07, height=694918}
07:49:07 [NioClientManager] PeerGroup - Peer{[34.243.139.60]:8333, version=70015, subVer=/Satoshi:0.19.0.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:07, height=694918}: New peer (6 connected, 1 pending, 6 max)
07:49:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 6477 tx/sec, 0 pre-filtered tx/sec, avg/last 225.51/3492.67 kilobytes per sec, chain/common height 694439/694918 (warming up 12 more seconds)
07:49:08 [NioClientManager] PeerGroup - [34.243.139.60]:8333: Peer died (5 connected, 1 pending, 6 max)
07:49:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 7631 tx/sec, 0 pre-filtered tx/sec, avg/last 444.14/4374.08 kilobytes per sec, chain/common height 694442/694918 (warming up 11 more seconds)
07:49:09 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694444, date 2021-08-06T08:54:53Z, hash 00000000000000000007be5c9265530ef7db5de58756945fdb69412e4ce77217
07:49:09 [Wallet autosave thread] WalletFiles - Save completed in 40.00 ms
07:49:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5229 tx/sec, 0 pre-filtered tx/sec, avg/last 583.34/2785.73 kilobytes per sec, chain/common height 694445/694918 (warming up 10 more seconds)
07:49:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 10899 tx/sec, 0 pre-filtered tx/sec, avg/last 914.41/6622.97 kilobytes per sec, chain/common height 694449/694918 (warming up 9 more seconds)
07:49:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 9 blocks/sec, 9321 tx/sec, 0 pre-filtered tx/sec, avg/last 1191.63/5545.97 kilobytes per sec, chain/common height 694458/694918 (warming up 8 more seconds)
07:49:12 [NioClientManager] PeerGroup - [95.208.203.223]:8333: Peer died (4 connected, 1 pending, 6 max)
07:49:12 [PeerGroup Thread] PeerGroup - Waiting 1500 ms before next connect attempt to [3.238.8.21]:8333
07:49:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5315 tx/sec, 0 pre-filtered tx/sec, avg/last 1321.07/2590.21 kilobytes per sec, chain/common height 694460/694918 (warming up 7 more seconds)
07:49:13 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694460, date 2021-08-06T10:52:09Z, hash 0000000000000000001262a1858a6b8fb87858b14b149411b441f53da6d65895
07:49:13 [Wallet autosave thread] WalletFiles - Save completed in 20.09 ms
07:49:13 [PeerGroup Thread] PeerGroup - Attempting connection to [91.77.165.170]:8333 (4 connected, 2 pending, 6 max)
07:49:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5399 tx/sec, 0 pre-filtered tx/sec, avg/last 1463.82/2856.66 kilobytes per sec, chain/common height 694463/694918 (warming up 6 more seconds)
07:49:13 [NioClientManager] NioClientManager - Connected to seed.btc.petertodd.org/91.77.165.170:8333
07:49:13 [NioClientManager] Peer - Announcing to seed.btc.petertodd.org/91.77.165.170:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
07:49:14 [NioClientManager] Peer - Peer{[91.77.165.170]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:14, height=694918}
07:49:14 [NioClientManager] PeerGroup - Peer{[91.77.165.170]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-09 14:49:14, height=694918}: New peer (5 connected, 1 pending, 6 max)
07:49:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 6595 tx/sec, 0 pre-filtered tx/sec, avg/last 1695.53/4635.67 kilobytes per sec, chain/common height 694465/694918 (warming up 5 more seconds)
07:49:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3917 tx/sec, 0 pre-filtered tx/sec, avg/last 1861.99/3330.72 kilobytes per sec, chain/common height 694468/694918 (warming up 4 more seconds)
07:49:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 694468, date 2021-08-06T12:07:03Z, hash 00000000000000000006fd910e10e7e3c1b8bab91a591b3d3400f6082f752e19
07:49:16 [Wallet autosave thread] WalletFiles - Save completed in 21.73 ms
07:49:16 [NioClientManager] PeerGroup - [91.209.70.247]:8333: Peer died (4 connected, 1 pending, 6 max)
07:49:16 [PeerGroup Thread] PeerGroup - Waiting 1000 ms before next connect attempt to [3.238.8.21]:8333
07:49:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 5857 tx/sec, 0 pre-filtered tx/sec, avg/last 2031.64/3394.70 kilobytes per sec, chain/common height 694473/694918 (warming up 3 more seconds)
07:49:17 [PeerGroup Thread] PeerGroup - Attempting connection to [2607:f2f8:ad40:bc1::1]:8333 (4 connected, 2 pending, 6 max)
07:49:17 [PeerGroup Thread] PeerGroup - Failed to connect to [2607:f2f8:ad40:bc1::1]:8333: Network is unreachable
07:49:17 [PeerGroup Thread] PeerGroup - [2607:f2f8:ad40:bc1::1]:8333: Peer died (4 connected, 1 pending, 6 max)