forked from bitcoin-dot-org/Bitcoin.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wallet.2021-08-12.log
2424 lines (2421 loc) · 388 KB
/
wallet.2021-08-12.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
02:33:13 [main] Context - Creating bitcoinj 0.15.10 context.
02:33:13 [main] WalletApplication - === starting app using flavor: prod, build type: release, network: org.bitcoin.production
02:33:13 [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
02:33:13 [main] WalletApplication - created notification channels, took 16.05 ms
02:33:13 [main] Configuration - just being used - last used 1060 minutes ago
02:33:13 [pool-2-thread-1] WalletApplication - BIP39 wordlist loaded from: 'bip39-wordlist.txt', took 16.55 ms
02:33:13 [pool-2-thread-1] WalletApplication - wallet loaded from: '/data/user/0/de.schildbach.wallet/files/wallet-protobuf', took 34.65 ms
02:33:14 [OkHttp https://api.coingecko.com/...] ExchangeRatesRepository - fetched exchange rates from https://api.coingecko.com/api/v3/exchange_rates, took 330.6 ms
02:33:14 [AsyncTask #1] AlertDialogsFragment - according to "https://wallet.schildbach.de/version?package=de.schildbach.wallet&installer=com.android.vending&sdk=30¤t=816", strongly recommended minimum app version.google_play is "815"
02:33:14 [AsyncTask #1] AlertDialogsFragment - according to "https://wallet.schildbach.de/version?package=de.schildbach.wallet&installer=com.android.vending&sdk=30¤t=816", minimum security patch level for bluetooth is 2017-09-01
02:33:14 [AsyncTask #1] AlertDialogsFragment - all good, no alert dialog shown
02:33:14 [main] BlockchainService - acquiring WakeLock{f5b5142 held=false, refCount=0}
02:33:14 [main] BlockchainService - service start command: de.schildbach.wallet.service.cancel_coins_received
02:33:14 [main] AbstractBlockChain - chain head is at height 692007:
block:
hash: 00000000000000000009c74a77909af7461f949c15b5f28fe0357b194fb08a06
version: 536870916 (BIP34, BIP66, BIP65)
previous block: 0000000000000000000342af663fd4d7d44276666d3731d34039902d0b64e7f0
time: 1626872362 (2021-07-21T12:59:22Z)
difficulty target (nBits): 387225124
nonce: 1390618738
02:33:14 [main] BlockchainService - active network is up, type: WIFI, state: CONNECTED/CONNECTED, extraInfo: "Quan"
02:33:14 [main] BlockchainService - creating org.bitcoinj.core.PeerGroup@ef9d2d8, sync mode: FULL
02:33:14 [main] BlockchainService - adding random peers from the P2P network
02:33:14 [main] BlockchainService - starting org.bitcoinj.core.PeerGroup@ef9d2d8 asynchronously
02:33:14 [PeerGroup Thread] PeerGroup - Starting ...
02:33:14 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
02:33:14 [Multiplexing discovery] HttpDiscovery - Requesting WITNESS peers from http://lightning-wallet.com:8081/peers?srvmask=8
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sipa.be
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bluematt.me
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.jonasschnelli.ch
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.btc.petertodd.org
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoin.sprovoost.nl
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.emzy.de
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.seed.bitcoinstats.com
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting WITNESS peers from x8.dnsseed.bitcoin.dashjr.org
02:33:14 [main] BlockchainService - active network is up, type: WIFI, state: CONNECTED/CONNECTED, extraInfo: "Quan"
02:33:14 [main] BlockchainService - trusted peer '176.194.148.90,' unknown host
02:33:14 [main] BlockchainService - trusted peer '3.129.216.175,' unknown host
02:33:14 [main] BlockchainService - trusted peer '104.16.40.77,' unknown host
02:33:14 [main] BlockchainService - trusted peer '3.209.12.198,' unknown host
02:33:14 [main] BlockchainService - trusted peer '151.101.65.195,' unknown host
02:33:14 [main] BlockchainService - trusted peer '151.101.1.195' resolved to 151.101.1.195
02:33:14 [main] BlockchainService - trusted peer '15.236.224.135,' unknown host
02:33:14 [main] BlockchainService - trusted peer '13.53.40.179,' unknown host
02:33:14 [main] BlockchainService - trusted peer '34.87.232.92,' unknown host
02:33:14 [main] BlockchainService - trusted peer '104.18.93.71,' unknown host
02:33:14 [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
02:33:14 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.btc.petertodd.org
02:33:15 [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
02:33:15 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.bitcoin.dashjr.org
02:33:15 [Multiplexing discovery] DnsDiscovery - Got 21 peers from x8.dnsseed.bluematt.me
02:33:15 [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
02:33:15 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.jonasschnelli.ch
02:33:15 [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
02:33:15 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sipa.be
02:33:15 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.bitcoin.jonasschnelli.ch
02:33:15 [Multiplexing discovery] DnsDiscovery - Got 25 peers from seed.bitcoin.sipa.be
02:33:15 [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
02:33:15 [Multiplexing discovery] DnsDiscovery - Requesting all peers from dnsseed.emzy.de
02:33:15 [Multiplexing discovery] DnsDiscovery - Got 24 peers from seed.btc.petertodd.org
02:33:15 [Multiplexing discovery] DnsDiscovery - Got 25 peers from x8.seed.bitcoinstats.com
02:33:15 [Multiplexing discovery] HttpDiscovery - Got 30 peers from http://httpseed.bitcoin.schildbach.de/peers?srvmask=8
02:33:15 [Multiplexing discovery] DnsDiscovery - Got 26 peers from dnsseed.emzy.de
02:33:15 [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
02:33:15 [Multiplexing discovery] DnsDiscovery - Requesting all peers from seed.bitcoin.sprovoost.nl
02:33:15 [Multiplexing discovery] DnsDiscovery - Got 23 peers from seed.bitcoin.sprovoost.nl
02:33:19 [PeerGroup Thread] MultiplexingDiscovery - Seed org.bitcoinj.net.discovery.HttpDiscovery@f9775aa: failed to look up: org.bitcoinj.net.discovery.PeerDiscoveryException: java.net.ConnectException: Failed to connect to lightning-wallet.com/5.9.83.143:8081
02:33:19 [PeerGroup Thread] MultiplexingDiscovery - Seed dnsseed.bitcoin.dashjr.org: failed to look up: org.bitcoinj.net.discovery.PeerDiscoveryException: java.net.UnknownHostException: Unable to resolve host "dnsseed.bitcoin.dashjr.org": No address associated with hostname
02:33:19 [PeerGroup Thread] PeerGroup - Peer discovery took 4.375 s and returned 198 items from 1 discoverers
02:33:19 [PeerGroup Thread] PeerGroup - Waiting 5374 ms before next connect attempt to [151.101.1.195]:8333
02:33:19 [PeerGroup Thread] PeerGroup - Waiting 999 ms before next connect attempt to [151.101.1.195]:8333
02:33:19 [PeerGroup Thread] PeerGroup - Waiting 999 ms before next connect attempt to [151.101.1.195]:8333
02:33:20 [PeerGroup Thread] PeerGroup - Attempting connection to [151.101.1.195]:8333 (0 connected, 1 pending, 6 max)
02:33:20 [PeerGroup Thread] PeerGroup - Attempting connection to [159.89.197.194]:8333 (0 connected, 2 pending, 6 max)
02:33:20 [PeerGroup Thread] PeerGroup - Attempting connection to [47.187.1.5]:8333 (0 connected, 3 pending, 6 max)
02:33:20 [PeerGroup Thread] PeerGroup - Attempting connection to [3.97.201.205]:8333 (0 connected, 4 pending, 6 max)
02:33:20 [PeerGroup Thread] PeerGroup - Attempting connection to [65.21.126.167]:8333 (0 connected, 5 pending, 6 max)
02:33:20 [PeerGroup Thread] PeerGroup - Attempting connection to [34.97.142.205]:8333 (0 connected, 6 pending, 6 max)
02:33:20 [PeerGroup Thread] PeerGroup - Attempting connection to [18.141.216.124]:8333 (0 connected, 7 pending, 6 max)
02:33:20 [NioClientManager] NioClientManager - Connected to /18.141.216.124:8333
02:33:20 [NioClientManager] Peer - Announcing to /18.141.216.124:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:20 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sprovoost.nl/159.89.197.194:8333
02:33:20 [NioClientManager] Peer - Announcing to seed.bitcoin.sprovoost.nl/159.89.197.194:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:20 [NioClientManager] Peer - Peer{[18.141.216.124]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:21, height=695354}
02:33:20 [NioClientManager] PeerGroup - Peer{[18.141.216.124]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:21, height=695354}: New peer (1 connected, 6 pending, 6 max)
02:33:20 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sprovoost.nl/34.97.142.205:8333
02:33:20 [NioClientManager] Peer - Announcing to seed.bitcoin.sprovoost.nl/34.97.142.205:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:20 [NioClientManager] Peer - Peer{[159.89.197.194]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:18, height=695354}
02:33:20 [NioClientManager] PeerGroup - Peer{[159.89.197.194]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:18, height=695354}: New peer (2 connected, 5 pending, 6 max)
02:33:20 [NioClientManager] NioClientManager - Connected to dnsseed.emzy.de/47.187.1.5:8333
02:33:20 [NioClientManager] Peer - Announcing to dnsseed.emzy.de/47.187.1.5:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:20 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sprovoost.nl/65.21.126.167:8333
02:33:20 [NioClientManager] Peer - Announcing to seed.bitcoin.sprovoost.nl/65.21.126.167:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:20 [NioClientManager] NioClientManager - Connected to x8.seed.bitcoinstats.com/3.97.201.205:8333
02:33:20 [NioClientManager] Peer - Announcing to x8.seed.bitcoinstats.com/3.97.201.205:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:20 [NioClientManager] Peer - Peer{[34.97.142.205]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:20, height=695354}
02:33:20 [NioClientManager] PeerGroup - Peer{[34.97.142.205]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:20, height=695354}: New peer (3 connected, 4 pending, 6 max)
02:33:20 [NioClientManager] Peer - Peer{[65.21.126.167]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:21, height=695354}
02:33:20 [NioClientManager] PeerGroup - Peer{[65.21.126.167]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:21, height=695354}: New peer (4 connected, 3 pending, 6 max)
02:33:20 [NioClientManager] PeerGroup - Setting download peer: Peer{[159.89.197.194]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:18, height=695354}
02:33:20 [NioClientManager] Peer - Peer{[3.97.201.205]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:21, height=695354}
02:33:20 [NioClientManager] PeerGroup - Peer{[3.97.201.205]:8333, version=70016, subVer=/Satoshi:0.21.0/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:21, height=695354}: New peer (5 connected, 2 pending, 6 max)
02:33:20 [NioClientManager] Peer - Peer{[47.187.1.5]:8333, version=70015, subVer=/Satoshi:0.18.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:22, height=695354}
02:33:20 [NioClientManager] PeerGroup - Peer{[47.187.1.5]:8333, version=70015, subVer=/Satoshi:0.18.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:22, height=695354}: New peer (6 connected, 1 pending, 6 max)
02:33:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 899 tx/sec, 0 pre-filtered tx/sec, avg/last 27.09/512.16 kilobytes per sec, chain/common height 692008/695354 (warming up 14 more seconds)
02:33:21 [NioClientManager] PeerGroup - [3.97.201.205]:8333: Peer died (5 connected, 1 pending, 6 max)
02:33:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 7 blocks/sec, 5262 tx/sec, 0 pre-filtered tx/sec, avg/last 177.22/3004.10 kilobytes per sec, chain/common height 692015/695354 (warming up 13 more seconds)
02:33:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3637 tx/sec, 0 pre-filtered tx/sec, avg/last 304.74/2552.04 kilobytes per sec, chain/common height 692018/695354 (warming up 12 more seconds)
02:33:24 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692019, date 2021-07-21T14:05:15Z, hash 000000000000000000126e0041b963890c000c1fe16520798b3cd9a4e708a555
02:33:24 [PeerGroup Thread] PeerGroup - Attempting connection to [128.46.53.249]:8333 (5 connected, 2 pending, 6 max)
02:33:24 [Wallet autosave thread] WalletFiles - Save completed in 228.2 ms
02:33:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2163 tx/sec, 0 pre-filtered tx/sec, avg/last 371.67/1340.13 kilobytes per sec, chain/common height 692019/695354 (warming up 11 more seconds)
02:33:24 [NioClientManager] NioClientManager - Failed to connect with exception: java.net.ConnectException: Connection refused
java.net.ConnectException: Connection refused
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)
02:33:24 [NioClientManager] PeerGroup - [128.46.53.249]:8333: Peer died (5 connected, 1 pending, 6 max)
02:33:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2424 tx/sec, 0 pre-filtered tx/sec, avg/last 442.39/1415.92 kilobytes per sec, chain/common height 692020/695354 (warming up 10 more seconds)
02:33:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3394 tx/sec, 0 pre-filtered tx/sec, avg/last 563.82/2430.17 kilobytes per sec, chain/common height 692022/695354 (warming up 9 more seconds)
02:33:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1521 tx/sec, 0 pre-filtered tx/sec, avg/last 627.85/1282.26 kilobytes per sec, chain/common height 692023/695354 (warming up 8 more seconds)
02:33:28 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692024, date 2021-07-21T14:43:38Z, hash 00000000000000000009179fdd0cca3404c8d410a6d36397a0ca0fe40e2c5263
02:33:28 [Wallet autosave thread] WalletFiles - Save completed in 22.52 ms
02:33:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4215 tx/sec, 0 pre-filtered tx/sec, avg/last 762.15/2687.54 kilobytes per sec, chain/common height 692025/695354 (warming up 7 more seconds)
02:33:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2515 tx/sec, 0 pre-filtered tx/sec, avg/last 830.24/1363.35 kilobytes per sec, chain/common height 692026/695354 (warming up 6 more seconds)
02:33:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1764 tx/sec, 0 pre-filtered tx/sec, avg/last 939.23/2181.33 kilobytes per sec, chain/common height 692028/695354 (warming up 5 more seconds)
02:33:31 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692028, date 2021-07-21T15:11:00Z, hash 00000000000000000001de0e2c130c3652ba0cea1523a0b426f63ae4b5739611
02:33:31 [Wallet autosave thread] WalletFiles - Save completed in 32.70 ms
02:33:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2888 tx/sec, 0 pre-filtered tx/sec, avg/last 1007.97/1377.85 kilobytes per sec, chain/common height 692029/695354 (warming up 3 more seconds)
02:33:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1048 tx/sec, 0 pre-filtered tx/sec, avg/last 1066.67/1177.22 kilobytes per sec, chain/common height 692030/695354 (warming up 1 more seconds)
02:33:35 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [151.101.1.195]:8333: Timed out
02:33:35 [AbstractTimeoutHandler timeouts] PeerGroup - [151.101.1.195]:8333: Peer died (5 connected, 0 pending, 6 max)
02:33:35 [PeerGroup Thread] PeerGroup - Waiting 2250 ms before next connect attempt to [35.205.117.63]:8333
02:33:35 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692030, date 2021-07-21T15:31:25Z, hash 00000000000000000008fc3e406f13cd43cdd018d593360b1d3ea5f5db72116f
02:33:35 [Wallet autosave thread] WalletFiles - Save completed in 27.71 ms
02:33:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2722 tx/sec, 0 pre-filtered tx/sec, avg/last 1141.01/1489.96 kilobytes per sec, chain/common height 692031/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:37 [PeerGroup Thread] PeerGroup - Attempting connection to [103.37.205.47]:8333 (5 connected, 1 pending, 6 max)
02:33:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1140.94/0.00 kilobytes per sec, chain/common height 692031/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:38 [NioClientManager] NioClientManager - Connected to /103.37.205.47:8333
02:33:38 [NioClientManager] Peer - Announcing to /103.37.205.47:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:38 [NioClientManager] Peer - Peer{[103.37.205.47]:8333, version=70016, subVer=/Satoshi:0.21.0(onesandzeros.nz)/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:39, height=695354}
02:33:38 [NioClientManager] PeerGroup - Peer{[103.37.205.47]:8333, version=70016, subVer=/Satoshi:0.21.0(onesandzeros.nz)/, services=1033 (NETWORK, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:33:39, height=695354}: New peer (6 connected, 0 pending, 6 max)
02:33:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1788 tx/sec, 0 pre-filtered tx/sec, avg/last 1215.03/1483.37 kilobytes per sec, chain/common height 692032/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:39 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692033, date 2021-07-21T15:53:27Z, hash 00000000000000000006daf812d766c538dbd3c17b733d3f7d51bdf5813a32fd
02:33:39 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [128.46.53.249]:8333: Timed out
02:33:39 [AbstractTimeoutHandler timeouts] PeerGroup - [128.46.53.249]:8333: Peer died (6 connected, 0 pending, 6 max)
02:33:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1272 tx/sec, 0 pre-filtered tx/sec, avg/last 1271.12/1123.47 kilobytes per sec, chain/common height 692033/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:39 [Wallet autosave thread] WalletFiles - Save completed in 194.1 ms
02:33:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1271.04/0.00 kilobytes per sec, chain/common height 692033/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:41 [main] ReportIssueDialogFragment - opening dialog de.schildbach.wallet.ui.ReportIssueDialogFragment
02:33:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1245.44/0.00 kilobytes per sec, chain/common height 692033/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2821 tx/sec, 0 pre-filtered tx/sec, avg/last 1164.99/1395.17 kilobytes per sec, chain/common height 692034/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1037.39/0.00 kilobytes per sec, chain/common height 692034/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 970.38/0.00 kilobytes per sec, chain/common height 692034/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:45 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692034, date 2021-07-21T16:07:07Z, hash 00000000000000000006c3eb15da42ebe2b7064051606affbb46261d7ad9535b
02:33:45 [Wallet autosave thread] WalletFiles - Save completed in 23.02 ms
02:33:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 899.58/0.00 kilobytes per sec, chain/common height 692034/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 778.08/0.00 kilobytes per sec, chain/common height 692034/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2809 tx/sec, 0 pre-filtered tx/sec, avg/last 780.23/1325.29 kilobytes per sec, chain/common height 692035/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 645.85/0.00 kilobytes per sec, chain/common height 692035/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 577.68/0.00 kilobytes per sec, chain/common height 692035/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:49 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692035, date 2021-07-21T16:40:08Z, hash 00000000000000000004d696fe934842f5409ee04d8c5d26af68d2e1f694e9d9
02:33:49 [Wallet autosave thread] WalletFiles - Save completed in 15.62 ms
02:33:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2854 tx/sec, 0 pre-filtered tx/sec, avg/last 536.98/1367.34 kilobytes per sec, chain/common height 692036/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 536.98/0.00 kilobytes per sec, chain/common height 692036/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:52 [NioClientManager] PeerGroup - [103.37.205.47]:8333: Peer died (5 connected, 0 pending, 6 max)
02:33:52 [PeerGroup Thread] PeerGroup - Waiting 1500 ms before next connect attempt to [35.205.117.63]:8333
02:33:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2955 tx/sec, 0 pre-filtered tx/sec, avg/last 543.50/1508.14 kilobytes per sec, chain/common height 692037/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:53 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692037, date 2021-07-21T17:06:18Z, hash 000000000000000000035b526a55e4c446a47b8359958998c7d3023a2efc6855
02:33:53 [Wallet autosave thread] WalletFiles - Save completed in 39.42 ms
02:33:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 543.50/0.00 kilobytes per sec, chain/common height 692037/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:54 [PeerGroup Thread] PeerGroup - Attempting connection to [86.49.157.42]:8333 (5 connected, 1 pending, 6 max)
02:33:54 [NioClientManager] NioClientManager - Connected to /86.49.157.42:8333
02:33:54 [NioClientManager] Peer - Announcing to /86.49.157.42:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:54 [NioClientManager] PeerGroup - [86.49.157.42]:8333: Peer died (5 connected, 0 pending, 6 max)
02:33:54 [PeerGroup Thread] PeerGroup - Waiting 2250 ms before next connect attempt to [35.205.117.63]:8333
02:33:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3141 tx/sec, 0 pre-filtered tx/sec, avg/last 553.43/1375.85 kilobytes per sec, chain/common height 692038/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2644 tx/sec, 0 pre-filtered tx/sec, avg/last 626.99/1471.30 kilobytes per sec, chain/common height 692039/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2272 tx/sec, 0 pre-filtered tx/sec, avg/last 622.20/1394.17 kilobytes per sec, chain/common height 692040/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:56 [PeerGroup Thread] PeerGroup - Attempting connection to [217.238.152.185]:8333 (5 connected, 1 pending, 6 max)
02:33:57 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692040, date 2021-07-21T17:53:50Z, hash 00000000000000000008c7b6edd6a7e73025da5ed98fa4dfd08c16ce083d901d
02:33:57 [Wallet autosave thread] WalletFiles - Save completed in 25.17 ms
02:33:57 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sipa.be/217.238.152.185:8333
02:33:57 [NioClientManager] Peer - Announcing to seed.bitcoin.sipa.be/217.238.152.185:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:33:57 [NioClientManager] Peer - Peer{[217.238.152.185]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1101 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED, remaining: 1000000), time=2021-08-12 09:33:58, height=695354}
02:33:57 [NioClientManager] PeerGroup - Peer{[217.238.152.185]:8333, version=70016, subVer=/Satoshi:0.21.1/, services=1101 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED, remaining: 1000000), time=2021-08-12 09:33:58, height=695354}: New peer (6 connected, 0 pending, 6 max)
02:33:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2966 tx/sec, 0 pre-filtered tx/sec, avg/last 694.35/1443.00 kilobytes per sec, chain/common height 692041/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 620.19/0.00 kilobytes per sec, chain/common height 692041/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:33:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2479 tx/sec, 0 pre-filtered tx/sec, avg/last 638.54/1490.48 kilobytes per sec, chain/common height 692042/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:00 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692042, date 2021-07-21T18:22:34Z, hash 0000000000000000000c2a6c743a7106afee7fdb50fa0a0529580f3e155acd31
02:34:00 [Wallet autosave thread] WalletFiles - Save completed in 28.77 ms
02:34:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 638.54/0.00 kilobytes per sec, chain/common height 692042/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 638.54/0.00 kilobytes per sec, chain/common height 692042/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 568.78/0.00 kilobytes per sec, chain/common height 692042/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5625 tx/sec, 0 pre-filtered tx/sec, avg/last 711.34/2851.24 kilobytes per sec, chain/common height 692044/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2566 tx/sec, 0 pre-filtered tx/sec, avg/last 780.80/1389.10 kilobytes per sec, chain/common height 692045/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2282 tx/sec, 0 pre-filtered tx/sec, avg/last 860.41/1592.33 kilobytes per sec, chain/common height 692046/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:05 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692046, date 2021-07-21T19:05:42Z, hash 00000000000000000012ac3beb682b0577f244325a15d370e8bf41b5af7d4994
02:34:05 [Wallet autosave thread] WalletFiles - Save completed in 12.47 ms
02:34:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3499 tx/sec, 0 pre-filtered tx/sec, avg/last 935.19/1495.55 kilobytes per sec, chain/common height 692047/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2744 tx/sec, 0 pre-filtered tx/sec, avg/last 940.17/1424.99 kilobytes per sec, chain/common height 692048/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:08 [NioClientManager] PeerGroup - [217.238.152.185]:8333: Peer died (5 connected, 0 pending, 6 max)
02:34:08 [PeerGroup Thread] PeerGroup - Waiting 1000 ms before next connect attempt to [35.205.117.63]:8333
02:34:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2757 tx/sec, 0 pre-filtered tx/sec, avg/last 1007.45/1345.56 kilobytes per sec, chain/common height 692049/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:09 [PeerGroup Thread] PeerGroup - Attempting connection to [3.35.168.137]:8333 (5 connected, 1 pending, 6 max)
02:34:09 [AbstractTimeoutHandler timeouts] PeerSocketHandler - [86.49.157.42]:8333: Timed out
02:34:09 [NioClientManager] NioClientManager - Connected to seed.bitcoin.sprovoost.nl/3.35.168.137:8333
02:34:09 [NioClientManager] Peer - Announcing to seed.bitcoin.sprovoost.nl/3.35.168.137:8333 as: /bitcoinj:0.15.10/Bitcoin Wallet:8.16/
02:34:09 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692050, date 2021-07-21T19:48:26Z, hash 0000000000000000000d1bbe6cb6e989b57c472080a8b38470665e5e7cb3d906
02:34:09 [Wallet autosave thread] WalletFiles - Save completed in 29.42 ms
02:34:09 [NioClientManager] Peer - Peer{[3.35.168.137]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:34:10, height=695354}
02:34:09 [NioClientManager] PeerGroup - Peer{[3.35.168.137]:8333, version=70015, subVer=/Satoshi:0.20.1/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2021-08-12 09:34:10, height=695354}: New peer (6 connected, 0 pending, 6 max)
02:34:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2868 tx/sec, 0 pre-filtered tx/sec, avg/last 1129.97/2450.30 kilobytes per sec, chain/common height 692051/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1950 tx/sec, 0 pre-filtered tx/sec, avg/last 1123.28/1233.59 kilobytes per sec, chain/common height 692052/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2524 tx/sec, 0 pre-filtered tx/sec, avg/last 1191.37/1361.76 kilobytes per sec, chain/common height 692054/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:12 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692055, date 2021-07-21T20:38:17Z, hash 0000000000000000000575d3085ed453481b0eadb771b1c31deaafdefb66ea04
02:34:12 [Wallet autosave thread] WalletFiles - Save completed in 29.73 ms
02:34:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4290 tx/sec, 0 pre-filtered tx/sec, avg/last 1251.60/2712.77 kilobytes per sec, chain/common height 692055/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1940 tx/sec, 0 pre-filtered tx/sec, avg/last 1327.61/1520.12 kilobytes per sec, chain/common height 692056/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2553 tx/sec, 0 pre-filtered tx/sec, avg/last 1330.33/1430.23 kilobytes per sec, chain/common height 692058/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5357 tx/sec, 0 pre-filtered tx/sec, avg/last 1398.09/2826.65 kilobytes per sec, chain/common height 692059/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692060, date 2021-07-21T21:48:51Z, hash 000000000000000000081c3cc4516356c9f4925359b19bb8de7128bbfc985beb
02:34:16 [Wallet autosave thread] WalletFiles - Save completed in 13.82 ms
02:34:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3203 tx/sec, 0 pre-filtered tx/sec, avg/last 1400.47/1441.68 kilobytes per sec, chain/common height 692060/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1146 tx/sec, 0 pre-filtered tx/sec, avg/last 1394.36/1320.80 kilobytes per sec, chain/common height 692061/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5551 tx/sec, 0 pre-filtered tx/sec, avg/last 1538.34/2879.65 kilobytes per sec, chain/common height 692063/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2787 tx/sec, 0 pre-filtered tx/sec, avg/last 1538.22/1488.11 kilobytes per sec, chain/common height 692064/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:20 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692065, date 2021-07-21T23:00:42Z, hash 0000000000000000000a6701d93f0305d8bad4e4b2fabc893910a5f5951db91e
02:34:20 [Wallet autosave thread] WalletFiles - Save completed in 19.10 ms
02:34:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2040 tx/sec, 0 pre-filtered tx/sec, avg/last 1650.17/2239.04 kilobytes per sec, chain/common height 692066/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1349 tx/sec, 0 pre-filtered tx/sec, avg/last 1755.84/2113.40 kilobytes per sec, chain/common height 692068/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3919 tx/sec, 0 pre-filtered tx/sec, avg/last 1861.79/2118.95 kilobytes per sec, chain/common height 692071/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:23 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692071, date 2021-07-21T23:39:36Z, hash 00000000000000000013351a69323ae6c1a42f5f08e8cd76bd288a6558055daf
02:34:23 [Wallet autosave thread] WalletFiles - Save completed in 39.33 ms
02:34:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2245 tx/sec, 0 pre-filtered tx/sec, avg/last 1790.21/1419.70 kilobytes per sec, chain/common height 692072/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2279 tx/sec, 0 pre-filtered tx/sec, avg/last 1794.88/1482.52 kilobytes per sec, chain/common height 692073/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3911 tx/sec, 0 pre-filtered tx/sec, avg/last 1845.08/2596.18 kilobytes per sec, chain/common height 692075/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:26 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692078, date 2021-07-22T01:07:52Z, hash 00000000000000000004082a70115144ad6514e99008767a8212b49ed1b9931a
02:34:26 [Wallet autosave thread] WalletFiles - Save completed in 24.72 ms
02:34:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2800 tx/sec, 0 pre-filtered tx/sec, avg/last 1849.35/1581.08 kilobytes per sec, chain/common height 692078/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4685 tx/sec, 0 pre-filtered tx/sec, avg/last 1903.52/2508.33 kilobytes per sec, chain/common height 692080/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2159 tx/sec, 0 pre-filtered tx/sec, avg/last 1918.28/1640.65 kilobytes per sec, chain/common height 692082/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2202 tx/sec, 0 pre-filtered tx/sec, avg/last 1864.05/1365.76 kilobytes per sec, chain/common height 692083/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:30 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692084, date 2021-07-22T02:28:05Z, hash 00000000000000000005e52f4f97a5479945f17153f43117fa6b4d0c39736c35
02:34:30 [Wallet autosave thread] WalletFiles - Save completed in 13.50 ms
02:34:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2289 tx/sec, 0 pre-filtered tx/sec, avg/last 1922.47/2402.11 kilobytes per sec, chain/common height 692086/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4745 tx/sec, 0 pre-filtered tx/sec, avg/last 1991.84/2749.10 kilobytes per sec, chain/common height 692090/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2197 tx/sec, 0 pre-filtered tx/sec, avg/last 1922.20/1320.04 kilobytes per sec, chain/common height 692092/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:33 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692094, date 2021-07-22T04:11:37Z, hash 0000000000000000000cceaa4e422a6b4f5791a754ed644941960d92f49fcefb
02:34:33 [Wallet autosave thread] WalletFiles - Save completed in 28.30 ms
02:34:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 8 blocks/sec, 4366 tx/sec, 0 pre-filtered tx/sec, avg/last 2019.79/3471.81 kilobytes per sec, chain/common height 692099/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 2926 tx/sec, 0 pre-filtered tx/sec, avg/last 2034.51/1724.58 kilobytes per sec, chain/common height 692104/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 3770 tx/sec, 0 pre-filtered tx/sec, avg/last 2020.54/2547.43 kilobytes per sec, chain/common height 692109/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:36 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692111, date 2021-07-22T05:47:09Z, hash 0000000000000000000aae24f40f6dd30fd906f96cf257093d3c63ece6b05672
02:34:36 [Wallet autosave thread] WalletFiles - Save completed in 50.01 ms
02:34:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3728 tx/sec, 0 pre-filtered tx/sec, avg/last 2049.83/2027.30 kilobytes per sec, chain/common height 692113/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2647 tx/sec, 0 pre-filtered tx/sec, avg/last 2050.20/1328.20 kilobytes per sec, chain/common height 692114/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2772 tx/sec, 0 pre-filtered tx/sec, avg/last 2026.59/2407.52 kilobytes per sec, chain/common height 692116/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:39 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692118, date 2021-07-22T06:58:36Z, hash 00000000000000000000588bba62bc03672d9dc94c4d9fdde254d75289bfc396
02:34:39 [Wallet autosave thread] WalletFiles - Save completed in 299.0 ms
02:34:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2364 tx/sec, 0 pre-filtered tx/sec, avg/last 2018.14/1319.20 kilobytes per sec, chain/common height 692119/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 5313 tx/sec, 0 pre-filtered tx/sec, avg/last 2051.80/2912.10 kilobytes per sec, chain/common height 692122/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3129 tx/sec, 0 pre-filtered tx/sec, avg/last 2026.18/1601.09 kilobytes per sec, chain/common height 692125/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3381 tx/sec, 0 pre-filtered tx/sec, avg/last 2036.92/2333.79 kilobytes per sec, chain/common height 692127/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:42 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692127, date 2021-07-22T08:15:37Z, hash 0000000000000000000b38409e79d3b4b2263dc54df6180d836c9d3f0baf452b
02:34:42 [Wallet autosave thread] WalletFiles - Save completed in 36.71 ms
02:34:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 6307 tx/sec, 0 pre-filtered tx/sec, avg/last 2103.75/2756.14 kilobytes per sec, chain/common height 692129/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5950 tx/sec, 0 pre-filtered tx/sec, avg/last 2167.50/2757.68 kilobytes per sec, chain/common height 692131/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2615 tx/sec, 0 pre-filtered tx/sec, avg/last 2112.21/1490.22 kilobytes per sec, chain/common height 692132/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:46 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692133, date 2021-07-22T10:06:51Z, hash 00000000000000000001caa28a0b6a2b5196e65de803d57af810a8a851a97b57
02:34:46 [Wallet autosave thread] WalletFiles - Save completed in 32.45 ms
02:34:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2193 tx/sec, 0 pre-filtered tx/sec, avg/last 2146.28/2262.55 kilobytes per sec, chain/common height 692134/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2434 tx/sec, 0 pre-filtered tx/sec, avg/last 2132.52/2233.06 kilobytes per sec, chain/common height 692136/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:47 [main] BlockchainService - service start command: de.schildbach.wallet.service.cancel_coins_received
02:34:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2473 tx/sec, 0 pre-filtered tx/sec, avg/last 2118.74/1365.07 kilobytes per sec, chain/common height 692137/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:49 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692138, date 2021-07-22T10:48:19Z, hash 0000000000000000001272223bc347a0128738d53578308900d8a5203967f253
02:34:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2293 tx/sec, 0 pre-filtered tx/sec, avg/last 2118.89/1368.80 kilobytes per sec, chain/common height 692138/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:50 [Wallet autosave thread] WalletFiles - Save completed in 299.9 ms
02:34:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1997 tx/sec, 0 pre-filtered tx/sec, avg/last 2055.72/1138.70 kilobytes per sec, chain/common height 692139/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2515 tx/sec, 0 pre-filtered tx/sec, avg/last 1979.94/1233.63 kilobytes per sec, chain/common height 692140/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 3355 tx/sec, 0 pre-filtered tx/sec, avg/last 1998.87/1698.55 kilobytes per sec, chain/common height 692145/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:53 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692147, date 2021-07-22T11:55:55Z, hash 000000000000000000124cc84ea790aa20d3dbea6f98066bc25034d973bcd885
02:34:53 [Wallet autosave thread] WalletFiles - Save completed in 19.26 ms
02:34:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3582 tx/sec, 0 pre-filtered tx/sec, avg/last 1949.52/2484.86 kilobytes per sec, chain/common height 692147/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 5456 tx/sec, 0 pre-filtered tx/sec, avg/last 1997.62/2686.51 kilobytes per sec, chain/common height 692150/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3975 tx/sec, 0 pre-filtered tx/sec, avg/last 1976.64/2127.83 kilobytes per sec, chain/common height 692153/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3195 tx/sec, 0 pre-filtered tx/sec, avg/last 1973.56/1965.78 kilobytes per sec, chain/common height 692155/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:56 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692155, date 2021-07-22T13:19:20Z, hash 0000000000000000000a1557ee72d3380b0bf009d71d2184d8ecba0e83e9db7b
02:34:57 [Wallet autosave thread] WalletFiles - Save completed in 41.61 ms
02:34:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2813 tx/sec, 0 pre-filtered tx/sec, avg/last 1977.18/1400.46 kilobytes per sec, chain/common height 692156/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3514 tx/sec, 0 pre-filtered tx/sec, avg/last 1951.08/1885.52 kilobytes per sec, chain/common height 692158/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:34:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2798 tx/sec, 0 pre-filtered tx/sec, avg/last 1970.31/1703.89 kilobytes per sec, chain/common height 692161/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:00 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692162, date 2021-07-22T14:16:04Z, hash 0000000000000000000966628a5edfd3b85abe4512b610126684210a5d036018
02:35:00 [Wallet autosave thread] WalletFiles - Save completed in 32.40 ms
02:35:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4876 tx/sec, 0 pre-filtered tx/sec, avg/last 1997.79/3461.67 kilobytes per sec, chain/common height 692164/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1434 tx/sec, 0 pre-filtered tx/sec, avg/last 1950.94/664.12 kilobytes per sec, chain/common height 692165/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1834.25/0.00 kilobytes per sec, chain/common height 692165/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:03 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692165, date 2021-07-22T14:29:24Z, hash 0000000000000000000d55e6348506006df238d08c2248c93bec7ae8a6b40c2c
02:35:03 [Wallet autosave thread] WalletFiles - Save completed in 15.04 ms
02:35:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2814 tx/sec, 0 pre-filtered tx/sec, avg/last 1766.76/1406.37 kilobytes per sec, chain/common height 692166/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3030 tx/sec, 0 pre-filtered tx/sec, avg/last 1707.11/1564.66 kilobytes per sec, chain/common height 692168/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2640 tx/sec, 0 pre-filtered tx/sec, avg/last 1702.04/1388.91 kilobytes per sec, chain/common height 692169/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:06 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692169, date 2021-07-22T15:16:47Z, hash 00000000000000000004c8d0c791114e0969dec57d07f1da80c08052426b3ca0
02:35:06 [Wallet autosave thread] WalletFiles - Save completed in 8.885 ms
02:35:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2932 tx/sec, 0 pre-filtered tx/sec, avg/last 1657.70/1375.58 kilobytes per sec, chain/common height 692170/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3303 tx/sec, 0 pre-filtered tx/sec, avg/last 1618.63/1451.68 kilobytes per sec, chain/common height 692172/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3886 tx/sec, 0 pre-filtered tx/sec, avg/last 1673.59/2464.33 kilobytes per sec, chain/common height 692175/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:09 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692176, date 2021-07-22T16:10:05Z, hash 0000000000000000000dc29cbf92ac8a0f83c38de5507e8b89158defc9466a4a
02:35:09 [Wallet autosave thread] WalletFiles - Save completed in 36.34 ms
02:35:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2078 tx/sec, 0 pre-filtered tx/sec, avg/last 1671.87/1334.33 kilobytes per sec, chain/common height 692176/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1352 tx/sec, 0 pre-filtered tx/sec, avg/last 1678.43/1269.86 kilobytes per sec, chain/common height 692177/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4244 tx/sec, 0 pre-filtered tx/sec, avg/last 1758.01/2825.26 kilobytes per sec, chain/common height 692180/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5441 tx/sec, 0 pre-filtered tx/sec, avg/last 1810.66/2751.54 kilobytes per sec, chain/common height 692182/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:12 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692183, date 2021-07-22T17:07:29Z, hash 00000000000000000011b28a339c4854925adafa43854309dff5219f710273c3
02:35:13 [Wallet autosave thread] WalletFiles - Save completed in 13.13 ms
02:35:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4496 tx/sec, 0 pre-filtered tx/sec, avg/last 1799.25/2256.63 kilobytes per sec, chain/common height 692184/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2847 tx/sec, 0 pre-filtered tx/sec, avg/last 1734.47/1390.99 kilobytes per sec, chain/common height 692185/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2935 tx/sec, 0 pre-filtered tx/sec, avg/last 1727.30/1984.45 kilobytes per sec, chain/common height 692188/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692189, date 2021-07-22T18:02:01Z, hash 000000000000000000058f08bc0abac7e5b44e188c4c30a6b20103424a3d7d80
02:35:16 [Wallet autosave thread] WalletFiles - Save completed in 29.64 ms
02:35:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4134 tx/sec, 0 pre-filtered tx/sec, avg/last 1775.31/2925.90 kilobytes per sec, chain/common height 692190/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2223 tx/sec, 0 pre-filtered tx/sec, avg/last 1778.80/1470.31 kilobytes per sec, chain/common height 692191/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2594 tx/sec, 0 pre-filtered tx/sec, avg/last 1759.42/1498.01 kilobytes per sec, chain/common height 692192/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:19 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692193, date 2021-07-22T18:41:50Z, hash 0000000000000000000908e7ff1e0db72ead3d64e1714770a0569076a066464c
02:35:19 [Wallet autosave thread] WalletFiles - Save completed in 22.27 ms
02:35:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1795 tx/sec, 0 pre-filtered tx/sec, avg/last 1744.20/1399.40 kilobytes per sec, chain/common height 692193/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3953 tx/sec, 0 pre-filtered tx/sec, avg/last 1674.38/2065.20 kilobytes per sec, chain/common height 692197/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5050 tx/sec, 0 pre-filtered tx/sec, avg/last 1792.40/3024.58 kilobytes per sec, chain/common height 692199/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2855 tx/sec, 0 pre-filtered tx/sec, avg/last 1863.40/1420.10 kilobytes per sec, chain/common height 692200/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:23 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692201, date 2021-07-22T20:10:54Z, hash 00000000000000000002de9386f51fa2ee7f2f66ab202c1de0b019102d50c28c
02:35:23 [Wallet autosave thread] WalletFiles - Save completed in 42.31 ms
02:35:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5406 tx/sec, 0 pre-filtered tx/sec, avg/last 1937.69/2892.04 kilobytes per sec, chain/common height 692202/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2233 tx/sec, 0 pre-filtered tx/sec, avg/last 1942.19/1654.74 kilobytes per sec, chain/common height 692203/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5162 tx/sec, 0 pre-filtered tx/sec, avg/last 2020.80/2960.99 kilobytes per sec, chain/common height 692205/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:26 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692206, date 2021-07-22T21:52:28Z, hash 0000000000000000000739112938218e36fb876db4a92a43a987637c3c47c77c
02:35:26 [Wallet autosave thread] WalletFiles - Save completed in 18.73 ms
02:35:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2215 tx/sec, 0 pre-filtered tx/sec, avg/last 2038.47/1729.05 kilobytes per sec, chain/common height 692207/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4014 tx/sec, 0 pre-filtered tx/sec, avg/last 2091.86/2519.46 kilobytes per sec, chain/common height 692208/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3469 tx/sec, 0 pre-filtered tx/sec, avg/last 2105.13/2729.68 kilobytes per sec, chain/common height 692210/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:29 [NioClientManager] PeerGroup - [151.101.1.195]:8333: Peer died (6 connected, 0 pending, 6 max)
02:35:29 [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)
02:35:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 910 tx/sec, 0 pre-filtered tx/sec, avg/last 2119.07/1613.29 kilobytes per sec, chain/common height 692211/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:29 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692211, date 2021-07-22T22:15:54Z, hash 00000000000000000001727f19f8f7d379e02911d4690d854dae046cd2d4bafd
02:35:29 [Wallet autosave thread] WalletFiles - Save completed in 12.87 ms
02:35:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 2055.58/0.00 kilobytes per sec, chain/common height 692211/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:31 [main] BlockchainService - service start command: de.schildbach.wallet.service.cancel_coins_received
02:35:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1914.32/0.00 kilobytes per sec, chain/common height 692211/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1776.74/0.00 kilobytes per sec, chain/common height 692211/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1663.91/0.00 kilobytes per sec, chain/common height 692211/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 323 tx/sec, 0 pre-filtered tx/sec, avg/last 1683.89/1790.70 kilobytes per sec, chain/common height 692212/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1584.67/0.00 kilobytes per sec, chain/common height 692212/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4668 tx/sec, 0 pre-filtered tx/sec, avg/last 1591.01/3052.69 kilobytes per sec, chain/common height 692214/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:37 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692217, date 2021-07-22T23:10:59Z, hash 0000000000000000000e227eaa64ff797630f66ee00fdb3cd297116f108095ac
02:35:37 [Wallet autosave thread] WalletFiles - Save completed in 82.97 ms
02:35:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3986 tx/sec, 0 pre-filtered tx/sec, avg/last 1674.39/3137.80 kilobytes per sec, chain/common height 692217/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 7 blocks/sec, 5611 tx/sec, 0 pre-filtered tx/sec, avg/last 1752.17/3053.58 kilobytes per sec, chain/common height 692224/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1187 tx/sec, 0 pre-filtered tx/sec, avg/last 1735.56/1067.20 kilobytes per sec, chain/common height 692226/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 7 blocks/sec, 3967 tx/sec, 0 pre-filtered tx/sec, avg/last 1770.58/2765.77 kilobytes per sec, chain/common height 692233/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:40 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692233, date 2021-07-23T00:37:08Z, hash 000000000000000000103109e23c7f44b43e94b5003b388701762d2e178a4e1f
02:35:41 [Wallet autosave thread] WalletFiles - Save completed in 512.0 ms
02:35:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5257 tx/sec, 0 pre-filtered tx/sec, avg/last 1761.21/2837.19 kilobytes per sec, chain/common height 692235/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2882 tx/sec, 0 pre-filtered tx/sec, avg/last 1778.71/1769.93 kilobytes per sec, chain/common height 692239/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4379 tx/sec, 0 pre-filtered tx/sec, avg/last 1769.79/2713.63 kilobytes per sec, chain/common height 692241/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:44 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692242, date 2021-07-23T03:02:47Z, hash 0000000000000000000876df3c7b9895710267e122b4df2e8dbeab224482a272
02:35:44 [Wallet autosave thread] WalletFiles - Save completed in 15.26 ms
02:35:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4603 tx/sec, 0 pre-filtered tx/sec, avg/last 1812.72/2513.48 kilobytes per sec, chain/common height 692243/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 5012 tx/sec, 0 pre-filtered tx/sec, avg/last 1821.38/3134.11 kilobytes per sec, chain/common height 692247/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2768 tx/sec, 0 pre-filtered tx/sec, avg/last 1858.80/2477.53 kilobytes per sec, chain/common height 692249/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:47 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692249, date 2021-07-23T05:13:57Z, hash 0000000000000000000e35ab7064073397bffd94dc4225a0c06761f5923314f4
02:35:47 [Wallet autosave thread] WalletFiles - Save completed in 14.63 ms
02:35:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1732.83/0.00 kilobytes per sec, chain/common height 692250/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1506 tx/sec, 0 pre-filtered tx/sec, avg/last 1662.76/1328.31 kilobytes per sec, chain/common height 692250/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2441 tx/sec, 0 pre-filtered tx/sec, avg/last 1649.72/1352.56 kilobytes per sec, chain/common height 692251/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1649.72/0.00 kilobytes per sec, chain/common height 692251/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:50 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692251, date 2021-07-23T05:32:28Z, hash 00000000000000000011fc04dac682a39600e7ee675f6468a7f22e3877660946
02:35:50 [Wallet autosave thread] WalletFiles - Save completed in 42.59 ms
02:35:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3399 tx/sec, 0 pre-filtered tx/sec, avg/last 1750.33/2012.04 kilobytes per sec, chain/common height 692253/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1078 tx/sec, 0 pre-filtered tx/sec, avg/last 1808.73/1168.17 kilobytes per sec, chain/common height 692254/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1535 tx/sec, 0 pre-filtered tx/sec, avg/last 1874.94/1324.04 kilobytes per sec, chain/common height 692255/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:54 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692255, date 2021-07-23T06:16:16Z, hash 0000000000000000000973785aafb1bf3a0e9647edaa5e1760ddb9058049f906
02:35:54 [main] BlockchainService - service start command: de.schildbach.wallet.service.cancel_coins_received
02:35:54 [Wallet autosave thread] WalletFiles - Save completed in 326.7 ms
02:35:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2636 tx/sec, 0 pre-filtered tx/sec, avg/last 1855.10/1393.94 kilobytes per sec, chain/common height 692256/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2539 tx/sec, 0 pre-filtered tx/sec, avg/last 1927.22/1442.37 kilobytes per sec, chain/common height 692257/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2690 tx/sec, 0 pre-filtered tx/sec, avg/last 1844.09/1390.26 kilobytes per sec, chain/common height 692258/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:56 [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.ui.ReportIssueDialogFragment.bluetoothMac(ReportIssueDialogFragment.java:353)
at de.schildbach.wallet.ui.ReportIssueDialogFragment.appendDeviceInfo(ReportIssueDialogFragment.java:346)
at de.schildbach.wallet.ui.ReportIssueDialogFragment.access$300(ReportIssueDialogFragment.java:68)
at de.schildbach.wallet.ui.ReportIssueDialogFragment$1.collectDeviceInfo(ReportIssueDialogFragment.java:158)
at de.schildbach.wallet.ui.ReportIssueDialogBuilder.onClick(ReportIssueDialogBuilder.java:128)
at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:233)
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)
... 14 common frames omitted
02:35:56 [main] ReportIssueDialogBuilder - invoked chooser for sending issue report
02:35:57 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692259, date 2021-07-23T07:44:06Z, hash 00000000000000000012a55b19d10f8a0ea92cfd05ad01787c344f22c118b669
02:35:57 [Wallet autosave thread] WalletFiles - Save completed in 15.93 ms
02:35:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2125 tx/sec, 0 pre-filtered tx/sec, avg/last 1755.04/1356.71 kilobytes per sec, chain/common height 692259/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4620 tx/sec, 0 pre-filtered tx/sec, avg/last 1745.22/2857.17 kilobytes per sec, chain/common height 692261/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:35:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3990 tx/sec, 0 pre-filtered tx/sec, avg/last 1821.41/2590.99 kilobytes per sec, chain/common height 692263/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 941 tx/sec, 0 pre-filtered tx/sec, avg/last 1741.46/1166.80 kilobytes per sec, chain/common height 692265/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:01 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692265, date 2021-07-23T08:47:45Z, hash 0000000000000000000dd79a8db3018d32ccc7ac794ae446793e0379783d3bf5
02:36:01 [Wallet autosave thread] WalletFiles - Save completed in 20.24 ms
02:36:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2019 tx/sec, 0 pre-filtered tx/sec, avg/last 1658.78/1183.58 kilobytes per sec, chain/common height 692265/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4719 tx/sec, 0 pre-filtered tx/sec, avg/last 1701.67/2627.77 kilobytes per sec, chain/common height 692268/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5117 tx/sec, 0 pre-filtered tx/sec, avg/last 1699.96/2679.40 kilobytes per sec, chain/common height 692269/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2056 tx/sec, 0 pre-filtered tx/sec, avg/last 1643.71/1388.58 kilobytes per sec, chain/common height 692271/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:04 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692271, date 2021-07-23T10:50:02Z, hash 00000000000000000011efb85840bb728877b492c714ab83c2d909424c2e4b79
02:36:05 [Wallet autosave thread] WalletFiles - Save completed in 35.58 ms
02:36:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 6222 tx/sec, 0 pre-filtered tx/sec, avg/last 1627.19/2803.67 kilobytes per sec, chain/common height 692273/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5069 tx/sec, 0 pre-filtered tx/sec, avg/last 1647.22/2878.16 kilobytes per sec, chain/common height 692274/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2393 tx/sec, 0 pre-filtered tx/sec, avg/last 1761.97/2294.92 kilobytes per sec, chain/common height 692276/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:08 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692277, date 2021-07-23T11:42:14Z, hash 0000000000000000000236571c6bf54fd886536f2bbc2e6abe5a133b25ae04c6
02:36:08 [Wallet autosave thread] WalletFiles - Save completed in 22.06 ms
02:36:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3224 tx/sec, 0 pre-filtered tx/sec, avg/last 1804.07/2170.24 kilobytes per sec, chain/common height 692278/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2727 tx/sec, 0 pre-filtered tx/sec, avg/last 1828.51/1841.40 kilobytes per sec, chain/common height 692280/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 6090 tx/sec, 0 pre-filtered tx/sec, avg/last 1984.94/3128.66 kilobytes per sec, chain/common height 692284/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:11 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692285, date 2021-07-23T12:47:12Z, hash 0000000000000000000a7d86d7d80c5fa17e6c0210c1cbf80b3f6a44c9c0a48d
02:36:11 [Wallet autosave thread] WalletFiles - Save completed in 16.50 ms
02:36:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1504 tx/sec, 0 pre-filtered tx/sec, avg/last 1924.78/808.86 kilobytes per sec, chain/common height 692286/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4492 tx/sec, 0 pre-filtered tx/sec, avg/last 1996.79/2608.22 kilobytes per sec, chain/common height 692287/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 5580 tx/sec, 0 pre-filtered tx/sec, avg/last 2082.04/3029.17 kilobytes per sec, chain/common height 692292/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3134 tx/sec, 0 pre-filtered tx/sec, avg/last 2087.58/1504.70 kilobytes per sec, chain/common height 692293/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:14 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692293, date 2021-07-23T14:05:04Z, hash 000000000000000000011bbc292fa1e6a06aece83a78b67a330395c398a7ce4b
02:36:14 [Wallet autosave thread] WalletFiles - Save completed in 32.68 ms
02:36:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2479 tx/sec, 0 pre-filtered tx/sec, avg/last 2126.26/2216.02 kilobytes per sec, chain/common height 692295/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4048 tx/sec, 0 pre-filtered tx/sec, avg/last 2167.11/2207.27 kilobytes per sec, chain/common height 692297/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3699 tx/sec, 0 pre-filtered tx/sec, avg/last 2206.21/2138.66 kilobytes per sec, chain/common height 692299/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:18 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692299, date 2021-07-23T14:51:03Z, hash 0000000000000000000719f661637dc68388210286dfa503e6ace85536f6721f
02:36:18 [Wallet autosave thread] WalletFiles - Save completed in 20.44 ms
02:36:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 5796 tx/sec, 0 pre-filtered tx/sec, avg/last 2216.64/3065.80 kilobytes per sec, chain/common height 692303/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2563 tx/sec, 0 pre-filtered tx/sec, avg/last 2156.25/1383.14 kilobytes per sec, chain/common height 692306/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2823 tx/sec, 0 pre-filtered tx/sec, avg/last 2168.78/1417.45 kilobytes per sec, chain/common height 692307/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:21 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692307, date 2021-07-23T15:29:19Z, hash 00000000000000000010f95ba8b8895ec1972ed5fa07357bd207ec2645a590cf
02:36:21 [Wallet autosave thread] WalletFiles - Save completed in 20.18 ms
02:36:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4618 tx/sec, 0 pre-filtered tx/sec, avg/last 2230.27/2413.33 kilobytes per sec, chain/common height 692310/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4329 tx/sec, 0 pre-filtered tx/sec, avg/last 2235.40/2730.27 kilobytes per sec, chain/common height 692312/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3374 tx/sec, 0 pre-filtered tx/sec, avg/last 2201.50/2001.54 kilobytes per sec, chain/common height 692314/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:24 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692314, date 2021-07-23T16:19:48Z, hash 0000000000000000000674408b1b2750c15caaa716a1ac4e84d3dd7ba005fb5b
02:36:24 [Wallet autosave thread] WalletFiles - Save completed in 18.60 ms
02:36:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2608 tx/sec, 0 pre-filtered tx/sec, avg/last 2201.17/1381.99 kilobytes per sec, chain/common height 692315/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4686 tx/sec, 0 pre-filtered tx/sec, avg/last 2180.37/2387.65 kilobytes per sec, chain/common height 692317/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4603 tx/sec, 0 pre-filtered tx/sec, avg/last 2178.25/2835.72 kilobytes per sec, chain/common height 692320/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:27 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692322, date 2021-07-23T17:30:03Z, hash 00000000000000000002455f7ebeb55b096f82d1e00301cd16c2e3820fbe03f7
02:36:27 [Wallet autosave thread] WalletFiles - Save completed in 18.77 ms
02:36:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 5311 tx/sec, 0 pre-filtered tx/sec, avg/last 2204.57/2821.33 kilobytes per sec, chain/common height 692323/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3396 tx/sec, 0 pre-filtered tx/sec, avg/last 2201.79/2114.73 kilobytes per sec, chain/common height 692326/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2474 tx/sec, 0 pre-filtered tx/sec, avg/last 2182.36/1452.76 kilobytes per sec, chain/common height 692328/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:30 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692332, date 2021-07-23T18:19:21Z, hash 000000000000000000001c72e186481a52e4a96fbaf826b4e0b1a911406d9920
02:36:30 [Wallet autosave thread] WalletFiles - Save completed in 19.87 ms
02:36:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4171 tx/sec, 0 pre-filtered tx/sec, avg/last 2198.38/3449.09 kilobytes per sec, chain/common height 692333/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 5213 tx/sec, 0 pre-filtered tx/sec, avg/last 2306.05/2962.13 kilobytes per sec, chain/common height 692335/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2077 tx/sec, 0 pre-filtered tx/sec, avg/last 2238.72/1261.71 kilobytes per sec, chain/common height 692336/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4454 tx/sec, 0 pre-filtered tx/sec, avg/last 2221.28/2680.26 kilobytes per sec, chain/common height 692339/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:33 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692338, date 2021-07-23T19:16:39Z, hash 00000000000000000002706daa093cfa1f6c2a77a41716a97fa7c87ddb9922a2
02:36:33 [Wallet autosave thread] WalletFiles - Save completed in 53.82 ms
02:36:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 5486 tx/sec, 0 pre-filtered tx/sec, avg/last 2304.05/3160.10 kilobytes per sec, chain/common height 692343/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5537 tx/sec, 0 pre-filtered tx/sec, avg/last 2335.48/2844.72 kilobytes per sec, chain/common height 692344/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2739 tx/sec, 0 pre-filtered tx/sec, avg/last 2298.85/1474.65 kilobytes per sec, chain/common height 692345/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:36 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692345, date 2021-07-23T20:43:05Z, hash 000000000000000000077c5bce6214962611b69ed1fa600cafb3fe894d4bbb9a
02:36:36 [Wallet autosave thread] WalletFiles - Save completed in 20.39 ms
02:36:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 2191.92/0.00 kilobytes per sec, chain/common height 692345/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 2038.63/0.00 kilobytes per sec, chain/common height 692345/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3181 tx/sec, 0 pre-filtered tx/sec, avg/last 2040.50/1420.69 kilobytes per sec, chain/common height 692346/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2637 tx/sec, 0 pre-filtered tx/sec, avg/last 2038.56/1378.51 kilobytes per sec, chain/common height 692347/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 979 tx/sec, 0 pre-filtered tx/sec, avg/last 1977.32/1188.47 kilobytes per sec, chain/common height 692348/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:42 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692348, date 2021-07-23T21:18:07Z, hash 00000000000000000012b2d975040c4fdc7ee5041babe6eb1d08c05ee910cdf0
02:36:42 [Wallet autosave thread] WalletFiles - Save completed in 20.45 ms
02:36:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2639 tx/sec, 0 pre-filtered tx/sec, avg/last 1912.17/1427.47 kilobytes per sec, chain/common height 692349/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1899 tx/sec, 0 pre-filtered tx/sec, avg/last 1884.23/1442.70 kilobytes per sec, chain/common height 692350/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4300 tx/sec, 0 pre-filtered tx/sec, avg/last 1952.96/2756.48 kilobytes per sec, chain/common height 692352/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:45 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692352, date 2021-07-23T22:04:42Z, hash 0000000000000000000d0812730d5b26ba3d1454604487b8dd2c45f83695077d
02:36:45 [Wallet autosave thread] WalletFiles - Save completed in 13.69 ms
02:36:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 554 tx/sec, 0 pre-filtered tx/sec, avg/last 1887.23/1073.07 kilobytes per sec, chain/common height 692353/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1745.44/0.00 kilobytes per sec, chain/common height 692353/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1604.38/0.00 kilobytes per sec, chain/common height 692353/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:48 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692353, date 2021-07-23T22:05:17Z, hash 0000000000000000000f3d8b9145f222f82585e0131b152467c3e4afe4d1b958
02:36:48 [Wallet autosave thread] WalletFiles - Save completed in 15.92 ms
02:36:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1498.64/0.00 kilobytes per sec, chain/common height 692353/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1426.00/0.00 kilobytes per sec, chain/common height 692353/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2762 tx/sec, 0 pre-filtered tx/sec, avg/last 1325.03/1429.67 kilobytes per sec, chain/common height 692354/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 891 tx/sec, 0 pre-filtered tx/sec, avg/last 1232.00/1101.51 kilobytes per sec, chain/common height 692355/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2557 tx/sec, 0 pre-filtered tx/sec, avg/last 1234.01/1302.01 kilobytes per sec, chain/common height 692356/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:53 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692356, date 2021-07-23T22:46:29Z, hash 0000000000000000000a279ced7f3253d142e3076bf8da15e782f639a6e73d6a
02:36:53 [Wallet autosave thread] WalletFiles - Save completed in 38.54 ms
02:36:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2798 tx/sec, 0 pre-filtered tx/sec, avg/last 1172.33/1446.48 kilobytes per sec, chain/common height 692357/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2726 tx/sec, 0 pre-filtered tx/sec, avg/last 1087.02/1454.06 kilobytes per sec, chain/common height 692358/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4048 tx/sec, 0 pre-filtered tx/sec, avg/last 1056.74/2238.97 kilobytes per sec, chain/common height 692360/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:56 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692361, date 2021-07-24T00:19:01Z, hash 00000000000000000009e399462767a6df8e8db7e19756e89b02ec9e4d7d0e3e
02:36:56 [Wallet autosave thread] WalletFiles - Save completed in 16.75 ms
02:36:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2345 tx/sec, 0 pre-filtered tx/sec, avg/last 1050.56/1351.14 kilobytes per sec, chain/common height 692361/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:57 [main] BlockchainService - service start command: de.schildbach.wallet.service.cancel_coins_received
02:36:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 792 tx/sec, 0 pre-filtered tx/sec, avg/last 1111.77/1224.26 kilobytes per sec, chain/common height 692363/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 4916 tx/sec, 0 pre-filtered tx/sec, avg/last 1249.03/2745.04 kilobytes per sec, chain/common height 692369/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:36:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 1605 tx/sec, 0 pre-filtered tx/sec, avg/last 1231.94/1078.97 kilobytes per sec, chain/common height 692372/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:00 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692373, date 2021-07-24T01:39:03Z, hash 0000000000000000000d04e7ea2c48e14fde435e1f53addc2d3133f6f77004c1
02:37:00 [Wallet autosave thread] WalletFiles - Save completed in 22.20 ms
02:37:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4531 tx/sec, 0 pre-filtered tx/sec, avg/last 1297.93/2698.24 kilobytes per sec, chain/common height 692376/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2858 tx/sec, 0 pre-filtered tx/sec, avg/last 1359.35/2416.95 kilobytes per sec, chain/common height 692378/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2025 tx/sec, 0 pre-filtered tx/sec, avg/last 1362.69/1494.20 kilobytes per sec, chain/common height 692381/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:03 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692383, date 2021-07-24T03:07:09Z, hash 0000000000000000000bb151df4b0a57c8d169010527f230d22d7b9b0debe14a
02:37:03 [Wallet autosave thread] WalletFiles - Save completed in 18.86 ms
02:37:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4134 tx/sec, 0 pre-filtered tx/sec, avg/last 1434.28/2874.58 kilobytes per sec, chain/common height 692384/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3144 tx/sec, 0 pre-filtered tx/sec, avg/last 1402.08/2112.38 kilobytes per sec, chain/common height 692388/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3525 tx/sec, 0 pre-filtered tx/sec, avg/last 1502.80/3087.58 kilobytes per sec, chain/common height 692392/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:06 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692394, date 2021-07-24T04:42:38Z, hash 0000000000000000000cdeb3943a75a52bea1729f8e9deccd55f09e1935c4880
02:37:06 [Wallet autosave thread] WalletFiles - Save completed in 16.61 ms
02:37:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3791 tx/sec, 0 pre-filtered tx/sec, avg/last 1611.33/2170.67 kilobytes per sec, chain/common height 692396/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1187 tx/sec, 0 pre-filtered tx/sec, avg/last 1646.06/694.44 kilobytes per sec, chain/common height 692397/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 6077 tx/sec, 0 pre-filtered tx/sec, avg/last 1849.82/4075.20 kilobytes per sec, chain/common height 692403/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:09 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692404, date 2021-07-24T06:12:26Z, hash 0000000000000000000d0342a83b29e6ff20f821340943585ac07bd3941afc15
02:37:09 [Wallet autosave thread] WalletFiles - Save completed in 18.52 ms
02:37:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 624 tx/sec, 0 pre-filtered tx/sec, avg/last 1866.81/339.84 kilobytes per sec, chain/common height 692404/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5145 tx/sec, 0 pre-filtered tx/sec, avg/last 1932.96/2752.61 kilobytes per sec, chain/common height 692406/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3777 tx/sec, 0 pre-filtered tx/sec, avg/last 2025.23/2947.06 kilobytes per sec, chain/common height 692408/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1167 tx/sec, 0 pre-filtered tx/sec, avg/last 2039.75/1592.38 kilobytes per sec, chain/common height 692409/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:12 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692409, date 2021-07-24T08:08:54Z, hash 0000000000000000000b51b3421465ecda1521bb7960cc866eda709945baf3cb
02:37:12 [Wallet autosave thread] WalletFiles - Save completed in 15.50 ms
02:37:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 147 tx/sec, 0 pre-filtered tx/sec, avg/last 2057.07/1792.92 kilobytes per sec, chain/common height 692410/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 388 tx/sec, 0 pre-filtered tx/sec, avg/last 2072.36/1759.69 kilobytes per sec, chain/common height 692411/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3083 tx/sec, 0 pre-filtered tx/sec, avg/last 2103.02/2852.26 kilobytes per sec, chain/common height 692413/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692414, date 2021-07-24T08:18:14Z, hash 0000000000000000000f41c817ad21cfc7be1b0ba68bc64baeae14fb39fc71f5
02:37:16 [Wallet autosave thread] WalletFiles - Save completed in 18.30 ms
02:37:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3504 tx/sec, 0 pre-filtered tx/sec, avg/last 2163.85/2567.78 kilobytes per sec, chain/common height 692417/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 7 blocks/sec, 3801 tx/sec, 0 pre-filtered tx/sec, avg/last 2212.41/2195.35 kilobytes per sec, chain/common height 692423/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2576 tx/sec, 0 pre-filtered tx/sec, avg/last 2142.01/1337.08 kilobytes per sec, chain/common height 692424/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:19 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692426, date 2021-07-24T09:43:37Z, hash 000000000000000000147ec4c7fa31d2652716de31b57b5150265fd2135fcad6
02:37:19 [Wallet autosave thread] WalletFiles - Save completed in 15.92 ms
02:37:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 5294 tx/sec, 0 pre-filtered tx/sec, avg/last 2229.67/2832.17 kilobytes per sec, chain/common height 692427/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2513 tx/sec, 0 pre-filtered tx/sec, avg/last 2166.47/1434.33 kilobytes per sec, chain/common height 692429/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4304 tx/sec, 0 pre-filtered tx/sec, avg/last 2181.11/2709.70 kilobytes per sec, chain/common height 692430/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:22 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692432, date 2021-07-24T11:31:07Z, hash 0000000000000000000bd46a0c2035cd9ac825e6f7fbceed0cee16af046aee89
02:37:22 [Wallet autosave thread] WalletFiles - Save completed in 16.82 ms
02:37:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5499 tx/sec, 0 pre-filtered tx/sec, avg/last 2246.83/2808.60 kilobytes per sec, chain/common height 692432/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3245 tx/sec, 0 pre-filtered tx/sec, avg/last 2215.40/2245.92 kilobytes per sec, chain/common height 692434/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4570 tx/sec, 0 pre-filtered tx/sec, avg/last 2238.86/2581.62 kilobytes per sec, chain/common height 692436/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3430 tx/sec, 0 pre-filtered tx/sec, avg/last 2172.28/1756.09 kilobytes per sec, chain/common height 692439/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:25 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692439, date 2021-07-24T12:45:08Z, hash 000000000000000000013cc3077a1d646274061056f9959ca1c85d716c2b37f7
02:37:25 [Wallet autosave thread] WalletFiles - Save completed in 17.50 ms
02:37:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2804 tx/sec, 0 pre-filtered tx/sec, avg/last 2141.86/1562.14 kilobytes per sec, chain/common height 692442/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 4063 tx/sec, 0 pre-filtered tx/sec, avg/last 2210.77/2072.74 kilobytes per sec, chain/common height 692447/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4765 tx/sec, 0 pre-filtered tx/sec, avg/last 2125.34/2366.58 kilobytes per sec, chain/common height 692448/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:29 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692448, date 2021-07-24T14:07:45Z, hash 000000000000000000067af4f4b7a1600bf9729381a406b5f421db7a297b281f
02:37:29 [Wallet autosave thread] WalletFiles - Save completed in 21.42 ms
02:37:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 2108.35/0.00 kilobytes per sec, chain/common height 692448/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2997 tx/sec, 0 pre-filtered tx/sec, avg/last 2040.99/1405.39 kilobytes per sec, chain/common height 692449/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3454 tx/sec, 0 pre-filtered tx/sec, avg/last 2026.26/2652.44 kilobytes per sec, chain/common height 692451/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 1920 tx/sec, 0 pre-filtered tx/sec, avg/last 1994.68/960.93 kilobytes per sec, chain/common height 692455/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:32 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692455, date 2021-07-24T14:50:09Z, hash 00000000000000000002463f7c4d6700a0473e30e015126b636482ba832488c2
02:37:33 [Wallet autosave thread] WalletFiles - Save completed in 175.9 ms
02:37:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2122 tx/sec, 0 pre-filtered tx/sec, avg/last 1982.09/1540.99 kilobytes per sec, chain/common height 692456/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1130 tx/sec, 0 pre-filtered tx/sec, avg/last 1935.99/837.65 kilobytes per sec, chain/common height 692457/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2070 tx/sec, 0 pre-filtered tx/sec, avg/last 1865.34/1439.29 kilobytes per sec, chain/common height 692458/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:36 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692461, date 2021-07-24T15:37:27Z, hash 0000000000000000000745d4a8bfa30f4971acfe5325821042f29f0be0727560
02:37:36 [Wallet autosave thread] WalletFiles - Save completed in 59.03 ms
02:37:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2760 tx/sec, 0 pre-filtered tx/sec, avg/last 1825.00/1761.03 kilobytes per sec, chain/common height 692461/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2763 tx/sec, 0 pre-filtered tx/sec, avg/last 1783.90/1373.35 kilobytes per sec, chain/common height 692462/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1568 tx/sec, 0 pre-filtered tx/sec, avg/last 1778.90/1237.07 kilobytes per sec, chain/common height 692463/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4478 tx/sec, 0 pre-filtered tx/sec, avg/last 1767.19/2597.89 kilobytes per sec, chain/common height 692465/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:40 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692466, date 2021-07-24T16:38:55Z, hash 000000000000000000119a3646feb17ce0a2fde9774e3e96f67c65a732c0a210
02:37:40 [Wallet autosave thread] WalletFiles - Save completed in 30.81 ms
02:37:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1567 tx/sec, 0 pre-filtered tx/sec, avg/last 1731.72/725.02 kilobytes per sec, chain/common height 692466/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4355 tx/sec, 0 pre-filtered tx/sec, avg/last 1721.39/2503.12 kilobytes per sec, chain/common height 692468/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 3004 tx/sec, 0 pre-filtered tx/sec, avg/last 1654.74/1475.58 kilobytes per sec, chain/common height 692473/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2144 tx/sec, 0 pre-filtered tx/sec, avg/last 1602.43/1199.63 kilobytes per sec, chain/common height 692475/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:44 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692477, date 2021-07-24T17:42:20Z, hash 00000000000000000009aee86810c43c3c613a5608771c6c03e55961abd1f08f
02:37:44 [Wallet autosave thread] WalletFiles - Save completed in 33.67 ms
02:37:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1758 tx/sec, 0 pre-filtered tx/sec, avg/last 1519.92/931.55 kilobytes per sec, chain/common height 692477/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2842 tx/sec, 0 pre-filtered tx/sec, avg/last 1493.48/1227.15 kilobytes per sec, chain/common height 692479/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3034 tx/sec, 0 pre-filtered tx/sec, avg/last 1550.64/2705.31 kilobytes per sec, chain/common height 692480/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2730 tx/sec, 0 pre-filtered tx/sec, avg/last 1514.69/1353.74 kilobytes per sec, chain/common height 692481/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:48 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692481, date 2021-07-24T18:43:57Z, hash 0000000000000000000c926dd2a078bb20e8ae77978f81e84799a1f08a1c3fc0
02:37:48 [Wallet autosave thread] WalletFiles - Save completed in 24.70 ms
02:37:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2665 tx/sec, 0 pre-filtered tx/sec, avg/last 1463.93/1351.50 kilobytes per sec, chain/common height 692482/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2368 tx/sec, 0 pre-filtered tx/sec, avg/last 1534.89/1419.16 kilobytes per sec, chain/common height 692484/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5743 tx/sec, 0 pre-filtered tx/sec, avg/last 1600.14/2710.32 kilobytes per sec, chain/common height 692485/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:51 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692485, date 2021-07-24T20:20:16Z, hash 000000000000000000136fb3d330e6ac4c51cfc37ecf4f7b89365b8217b346f9
02:37:51 [Wallet autosave thread] WalletFiles - Save completed in 16.61 ms
02:37:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3308 tx/sec, 0 pre-filtered tx/sec, avg/last 1541.32/1476.08 kilobytes per sec, chain/common height 692486/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3368 tx/sec, 0 pre-filtered tx/sec, avg/last 1623.76/2609.76 kilobytes per sec, chain/common height 692488/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1827 tx/sec, 0 pre-filtered tx/sec, avg/last 1617.50/1415.72 kilobytes per sec, chain/common height 692489/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:54 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692489, date 2021-07-24T20:45:50Z, hash 00000000000000000010769b8182db22dac2ae7168c304fb0e5a425e41918938
02:37:54 [Wallet autosave thread] WalletFiles - Save completed in 20.60 ms
02:37:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1575.61/0.00 kilobytes per sec, chain/common height 692490/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1562 tx/sec, 0 pre-filtered tx/sec, avg/last 1571.02/1347.46 kilobytes per sec, chain/common height 692490/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1482.97/0.00 kilobytes per sec, chain/common height 692490/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1245 tx/sec, 0 pre-filtered tx/sec, avg/last 1460.53/924.56 kilobytes per sec, chain/common height 692491/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:57 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692491, date 2021-07-24T21:00:38Z, hash 0000000000000000000fe9e219ab7f2855fd3311be0848e2d9f8196ec8aa71a4
02:37:57 [Wallet autosave thread] WalletFiles - Save completed in 31.90 ms
02:37:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1398.68/0.00 kilobytes per sec, chain/common height 692491/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:37:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1268.78/0.00 kilobytes per sec, chain/common height 692491/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2328 tx/sec, 0 pre-filtered tx/sec, avg/last 1300.04/1350.24 kilobytes per sec, chain/common height 692492/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1174.89/0.00 kilobytes per sec, chain/common height 692492/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1101.11/0.00 kilobytes per sec, chain/common height 692492/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:03 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692492, date 2021-07-24T21:16:53Z, hash 0000000000000000001494fc641dee340077b06fffd5243049072bea1a56da80
02:38:03 [Wallet autosave thread] WalletFiles - Save completed in 36.31 ms
02:38:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1041.13/0.00 kilobytes per sec, chain/common height 692492/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2579 tx/sec, 0 pre-filtered tx/sec, avg/last 1064.97/1408.33 kilobytes per sec, chain/common height 692493/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1003.61/0.00 kilobytes per sec, chain/common height 692493/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1283 tx/sec, 0 pre-filtered tx/sec, avg/last 900.90/651.09 kilobytes per sec, chain/common height 692494/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:07 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692494, date 2021-07-24T21:44:50Z, hash 0000000000000000000987abbe710a014c27b542efd1c1ef85e61a98f3630201
02:38:07 [Wallet autosave thread] WalletFiles - Save completed in 36.62 ms
02:38:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 833.21/0.00 kilobytes per sec, chain/common height 692494/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 765.64/0.00 kilobytes per sec, chain/common height 692494/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2261 tx/sec, 0 pre-filtered tx/sec, avg/last 766.13/1429.05 kilobytes per sec, chain/common height 692496/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 630.61/0.00 kilobytes per sec, chain/common height 692496/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 594 tx/sec, 0 pre-filtered tx/sec, avg/last 604.75/958.78 kilobytes per sec, chain/common height 692497/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:12 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692497, date 2021-07-24T22:05:03Z, hash 0000000000000000000efcf1f60f185ed80c368169f511ec92a7c154aaeb87fe
02:38:12 [Wallet autosave thread] WalletFiles - Save completed in 23.69 ms
02:38:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 474.26/0.00 kilobytes per sec, chain/common height 692497/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 403.48/0.00 kilobytes per sec, chain/common height 692497/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 403.48/0.00 kilobytes per sec, chain/common height 692498/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2544 tx/sec, 0 pre-filtered tx/sec, avg/last 406.16/1401.17 kilobytes per sec, chain/common height 692498/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1820 tx/sec, 0 pre-filtered tx/sec, avg/last 483.16/1540.03 kilobytes per sec, chain/common height 692499/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1190 tx/sec, 0 pre-filtered tx/sec, avg/last 488.94/1040.10 kilobytes per sec, chain/common height 692500/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:17 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692500, date 2021-07-24T22:49:36Z, hash 00000000000000000012d9fb873d7642398cd82bdf00423df0ef2052ef5b0358
02:38:17 [Wallet autosave thread] WalletFiles - Save completed in 20.98 ms
02:38:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 556 tx/sec, 0 pre-filtered tx/sec, avg/last 511.79/457.04 kilobytes per sec, chain/common height 692501/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 97 tx/sec, 0 pre-filtered tx/sec, avg/last 515.18/67.80 kilobytes per sec, chain/common height 692502/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2917 tx/sec, 0 pre-filtered tx/sec, avg/last 535.05/1747.68 kilobytes per sec, chain/common height 692506/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:21 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692507, date 2021-07-24T23:27:59Z, hash 0000000000000000000132bc648693bb849d5753bc13c269dba4e9878191141f
02:38:21 [Wallet autosave thread] WalletFiles - Save completed in 16.53 ms
02:38:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1086 tx/sec, 0 pre-filtered tx/sec, avg/last 560.37/506.39 kilobytes per sec, chain/common height 692507/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 560.37/0.00 kilobytes per sec, chain/common height 692507/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:23 [NioClientManager] AbstractBlockChain - Block does not connect: 0000000000000000000004f755c81a60f507ef8fc26f075319c31bf5b93a6aea prev 0000000000000000000d94a654c6b54fcc2f6dc83ba445a53ab9717100161c19
02:38:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 560.37/0.00 kilobytes per sec, chain/common height 692507/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 1661 tx/sec, 0 pre-filtered tx/sec, avg/last 532.05/841.79 kilobytes per sec, chain/common height 692511/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1538 tx/sec, 0 pre-filtered tx/sec, avg/last 576.82/895.45 kilobytes per sec, chain/common height 692513/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 340 tx/sec, 0 pre-filtered tx/sec, avg/last 562.97/374.07 kilobytes per sec, chain/common height 692514/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:27 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692515, date 2021-07-25T00:11:33Z, hash 0000000000000000000802f960107975ba1c488df1ab45a56d4e303466fa3bf3
02:38:27 [Wallet autosave thread] WalletFiles - Save completed in 17.43 ms
02:38:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1076 tx/sec, 0 pre-filtered tx/sec, avg/last 606.80/876.59 kilobytes per sec, chain/common height 692515/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3733 tx/sec, 0 pre-filtered tx/sec, avg/last 710.07/2065.43 kilobytes per sec, chain/common height 692519/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 1769 tx/sec, 0 pre-filtered tx/sec, avg/last 689.77/1023.16 kilobytes per sec, chain/common height 692524/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1215 tx/sec, 0 pre-filtered tx/sec, avg/last 721.10/626.59 kilobytes per sec, chain/common height 692525/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:31 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692528, date 2021-07-25T01:39:49Z, hash 000000000000000000081a40dc685ae96efcb316fddde87f3807eae52a07cf0c
02:38:31 [Wallet autosave thread] WalletFiles - Save completed in 18.76 ms
02:38:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2041 tx/sec, 0 pre-filtered tx/sec, avg/last 726.86/1073.96 kilobytes per sec, chain/common height 692528/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2578 tx/sec, 0 pre-filtered tx/sec, avg/last 792.04/1303.52 kilobytes per sec, chain/common height 692529/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2589 tx/sec, 0 pre-filtered tx/sec, avg/last 864.63/1451.82 kilobytes per sec, chain/common height 692530/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3207 tx/sec, 0 pre-filtered tx/sec, avg/last 959.83/1904.10 kilobytes per sec, chain/common height 692532/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:35 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692533, date 2021-07-25T03:45:12Z, hash 0000000000000000000172786da06a0663d14b128246fec6b2c0461ba02c397c
02:38:35 [Wallet autosave thread] WalletFiles - Save completed in 20.34 ms
02:38:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1484 tx/sec, 0 pre-filtered tx/sec, avg/last 934.43/893.08 kilobytes per sec, chain/common height 692533/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1555 tx/sec, 0 pre-filtered tx/sec, avg/last 915.62/1163.83 kilobytes per sec, chain/common height 692535/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 8 blocks/sec, 3230 tx/sec, 0 pre-filtered tx/sec, avg/last 984.50/2417.75 kilobytes per sec, chain/common height 692543/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3498 tx/sec, 0 pre-filtered tx/sec, avg/last 1055.50/1877.02 kilobytes per sec, chain/common height 692546/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:39 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692549, date 2021-07-25T05:42:55Z, hash 0000000000000000000c3b18a8118071f750dfa22d616d4ed4761fb5927d7424
02:38:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 1924 tx/sec, 0 pre-filtered tx/sec, avg/last 1112.49/1207.50 kilobytes per sec, chain/common height 692550/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:40 [Wallet autosave thread] WalletFiles - Save completed in 660.8 ms
02:38:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2871 tx/sec, 0 pre-filtered tx/sec, avg/last 1139.18/2281.52 kilobytes per sec, chain/common height 692553/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1129 tx/sec, 0 pre-filtered tx/sec, avg/last 1187.46/1471.99 kilobytes per sec, chain/common height 692555/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 1175 tx/sec, 0 pre-filtered tx/sec, avg/last 1220.45/659.84 kilobytes per sec, chain/common height 692558/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:43 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692558, date 2021-07-25T06:36:07Z, hash 000000000000000000124ec4c11c42307f3326fb57fbbd71db3bcc73e1a8c5ec
02:38:43 [Wallet autosave thread] WalletFiles - Save completed in 59.68 ms
02:38:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2452 tx/sec, 0 pre-filtered tx/sec, avg/last 1306.43/1719.66 kilobytes per sec, chain/common height 692561/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2726 tx/sec, 0 pre-filtered tx/sec, avg/last 1345.34/1619.85 kilobytes per sec, chain/common height 692564/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3084 tx/sec, 0 pre-filtered tx/sec, avg/last 1385.04/1689.50 kilobytes per sec, chain/common height 692566/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:46 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692567, date 2021-07-25T08:02:26Z, hash 00000000000000000003d1e60cb12d15dd2518f7e5a75464304fc393e7ec12c6
02:38:46 [Wallet autosave thread] WalletFiles - Save completed in 20.97 ms
02:38:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1198 tx/sec, 0 pre-filtered tx/sec, avg/last 1415.45/982.27 kilobytes per sec, chain/common height 692567/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1543 tx/sec, 0 pre-filtered tx/sec, avg/last 1408.27/732.98 kilobytes per sec, chain/common height 692568/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 6013 tx/sec, 0 pre-filtered tx/sec, avg/last 1464.65/3192.98 kilobytes per sec, chain/common height 692574/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1615 tx/sec, 0 pre-filtered tx/sec, avg/last 1472.01/1170.43 kilobytes per sec, chain/common height 692575/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:49 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692576, date 2021-07-25T09:35:38Z, hash 0000000000000000001401b8c38053df6253b46650589a8ca0c707d6be6b6a77
02:38:49 [Wallet autosave thread] WalletFiles - Save completed in 54.40 ms
02:38:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4441 tx/sec, 0 pre-filtered tx/sec, avg/last 1559.49/2376.15 kilobytes per sec, chain/common height 692577/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2153 tx/sec, 0 pre-filtered tx/sec, avg/last 1596.87/1821.64 kilobytes per sec, chain/common height 692579/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 1796 tx/sec, 0 pre-filtered tx/sec, avg/last 1580.72/980.50 kilobytes per sec, chain/common height 692583/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:53 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692584, date 2021-07-25T11:07:50Z, hash 0000000000000000000dcb3971310b6978300af5f20cd6ec4049d84e85c01457
02:38:53 [Wallet autosave thread] WalletFiles - Save completed in 35.58 ms
02:38:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 6874 tx/sec, 0 pre-filtered tx/sec, avg/last 1697.85/3794.37 kilobytes per sec, chain/common height 692587/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2106 tx/sec, 0 pre-filtered tx/sec, avg/last 1677.82/1503.56 kilobytes per sec, chain/common height 692588/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2304 tx/sec, 0 pre-filtered tx/sec, avg/last 1707.68/1490.20 kilobytes per sec, chain/common height 692591/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:56 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692592, date 2021-07-25T12:17:04Z, hash 00000000000000000011f10a7a205ef5bdcb8a7378e7b96ce495975d5092b481
02:38:56 [Wallet autosave thread] WalletFiles - Save completed in 19.23 ms
02:38:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2245 tx/sec, 0 pre-filtered tx/sec, avg/last 1722.98/1469.81 kilobytes per sec, chain/common height 692592/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4594 tx/sec, 0 pre-filtered tx/sec, avg/last 1748.70/2932.29 kilobytes per sec, chain/common height 692595/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1654 tx/sec, 0 pre-filtered tx/sec, avg/last 1737.62/1655.29 kilobytes per sec, chain/common height 692596/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1868 tx/sec, 0 pre-filtered tx/sec, avg/last 1733.33/1121.87 kilobytes per sec, chain/common height 692597/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:38:59 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692597, date 2021-07-25T13:14:17Z, hash 0000000000000000000fa8c6f2c9adb2956f0c71c00e03e4210c2f7414f8d0c4
02:38:59 [Wallet autosave thread] WalletFiles - Save completed in 18.69 ms
02:39:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2925 tx/sec, 0 pre-filtered tx/sec, avg/last 1718.71/1989.10 kilobytes per sec, chain/common height 692599/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1390 tx/sec, 0 pre-filtered tx/sec, avg/last 1686.87/835.21 kilobytes per sec, chain/common height 692601/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3762 tx/sec, 0 pre-filtered tx/sec, avg/last 1804.95/3021.38 kilobytes per sec, chain/common height 692602/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:03 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692605, date 2021-07-25T14:30:01Z, hash 0000000000000000000595e8bd0a7e8aeddd65dd67e1a7b389fd4149dd00a252
02:39:03 [Wallet autosave thread] WalletFiles - Save completed in 21.55 ms
02:39:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2883 tx/sec, 0 pre-filtered tx/sec, avg/last 1833.80/2296.72 kilobytes per sec, chain/common height 692605/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2292 tx/sec, 0 pre-filtered tx/sec, avg/last 1819.77/1339.22 kilobytes per sec, chain/common height 692607/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 6035 tx/sec, 0 pre-filtered tx/sec, avg/last 1875.25/2799.12 kilobytes per sec, chain/common height 692609/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4611 tx/sec, 0 pre-filtered tx/sec, avg/last 1956.84/2614.05 kilobytes per sec, chain/common height 692611/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:07 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692611, date 2021-07-25T16:29:13Z, hash 00000000000000000013d736ee3f50af566319440f2312c3ae4c4060a24a9f52
02:39:07 [Wallet autosave thread] WalletFiles - Save completed in 14.06 ms
02:39:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4027 tx/sec, 0 pre-filtered tx/sec, avg/last 2060.42/2804.60 kilobytes per sec, chain/common height 692612/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1594 tx/sec, 0 pre-filtered tx/sec, avg/last 1995.78/1900.17 kilobytes per sec, chain/common height 692614/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2788 tx/sec, 0 pre-filtered tx/sec, avg/last 2007.57/1406.08 kilobytes per sec, chain/common height 692615/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:10 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692617, date 2021-07-25T17:35:39Z, hash 0000000000000000000ff5f78a09f7ad5d45f09ff96e4159847677f18a9c3186
02:39:10 [Wallet autosave thread] WalletFiles - Save completed in 52.25 ms
02:39:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 5968 tx/sec, 0 pre-filtered tx/sec, avg/last 2055.98/3344.39 kilobytes per sec, chain/common height 692618/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 738 tx/sec, 0 pre-filtered tx/sec, avg/last 1984.41/390.22 kilobytes per sec, chain/common height 692619/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1792 tx/sec, 0 pre-filtered tx/sec, avg/last 1979.87/889.75 kilobytes per sec, chain/common height 692620/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:13 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692621, date 2021-07-25T17:58:19Z, hash 0000000000000000000ce2db6bf4cc41647f3f2af8f7db579d9c6921a5134ddc
02:39:13 [Wallet autosave thread] WalletFiles - Save completed in 21.65 ms
02:39:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1026 tx/sec, 0 pre-filtered tx/sec, avg/last 1820.08/598.57 kilobytes per sec, chain/common height 692621/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1902 tx/sec, 0 pre-filtered tx/sec, avg/last 1818.11/1464.14 kilobytes per sec, chain/common height 692622/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1854 tx/sec, 0 pre-filtered tx/sec, avg/last 1837.07/1869.40 kilobytes per sec, chain/common height 692624/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1763.58/0.00 kilobytes per sec, chain/common height 692625/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:17 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692626, date 2021-07-25T18:37:30Z, hash 00000000000000000004f083e38f36e0b55b0c792f4aecd327616e0f5420bec5
02:39:17 [Wallet autosave thread] WalletFiles - Save completed in 22.45 ms
02:39:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2426 tx/sec, 0 pre-filtered tx/sec, avg/last 1772.57/3112.21 kilobytes per sec, chain/common height 692626/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 821 tx/sec, 0 pre-filtered tx/sec, avg/last 1771.33/1630.35 kilobytes per sec, chain/common height 692627/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1715.23/0.00 kilobytes per sec, chain/common height 692627/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1076 tx/sec, 0 pre-filtered tx/sec, avg/last 1697.02/1624.82 kilobytes per sec, chain/common height 692628/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:21 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692629, date 2021-07-25T18:55:17Z, hash 000000000000000000033900ab825458019e4a9e5fbe4a0858c420deb8970f7f
02:39:21 [Wallet autosave thread] WalletFiles - Save completed in 15.75 ms
02:39:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 770 tx/sec, 0 pre-filtered tx/sec, avg/last 1741.99/1734.52 kilobytes per sec, chain/common height 692629/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 524 tx/sec, 0 pre-filtered tx/sec, avg/last 1678.41/1749.83 kilobytes per sec, chain/common height 692630/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 663 tx/sec, 0 pre-filtered tx/sec, avg/last 1647.20/1672.50 kilobytes per sec, chain/common height 692631/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3116 tx/sec, 0 pre-filtered tx/sec, avg/last 1652.40/1443.33 kilobytes per sec, chain/common height 692632/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:25 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692633, date 2021-07-25T19:43:33Z, hash 0000000000000000000f55e84159bbb9822fa0624eb1ebfb50c57cc8a9978009
02:39:25 [Wallet autosave thread] WalletFiles - Save completed in 65.69 ms
02:39:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2558 tx/sec, 0 pre-filtered tx/sec, avg/last 1588.83/1527.72 kilobytes per sec, chain/common height 692633/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 5097 tx/sec, 0 pre-filtered tx/sec, avg/last 1606.92/2975.77 kilobytes per sec, chain/common height 692636/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 178 tx/sec, 0 pre-filtered tx/sec, avg/last 1557.32/1812.67 kilobytes per sec, chain/common height 692637/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 683 tx/sec, 0 pre-filtered tx/sec, avg/last 1530.70/1367.67 kilobytes per sec, chain/common height 692638/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:28 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692638, date 2021-07-25T20:23:13Z, hash 0000000000000000000a21dd7eb71ed2f2c4a2818214357eb4948cb0ed317b19
02:39:28 [Wallet autosave thread] WalletFiles - Save completed in 17.02 ms
02:39:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 5650 tx/sec, 0 pre-filtered tx/sec, avg/last 1603.33/2858.76 kilobytes per sec, chain/common height 692643/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 6443 tx/sec, 0 pre-filtered tx/sec, avg/last 1592.97/3137.15 kilobytes per sec, chain/common height 692649/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2065 tx/sec, 0 pre-filtered tx/sec, avg/last 1685.30/2236.80 kilobytes per sec, chain/common height 692651/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:31 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692651, date 2021-07-25T22:04:19Z, hash 00000000000000000008b467d9f5a3d6ba032f0d82e182f08404e0732b7b2b84
02:39:32 [Wallet autosave thread] WalletFiles - Save completed in 444.2 ms
02:39:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 2232 tx/sec, 0 pre-filtered tx/sec, avg/last 1715.78/1499.39 kilobytes per sec, chain/common height 692654/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3865 tx/sec, 0 pre-filtered tx/sec, avg/last 1775.82/1799.45 kilobytes per sec, chain/common height 692658/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 4735 tx/sec, 0 pre-filtered tx/sec, avg/last 1839.35/2734.59 kilobytes per sec, chain/common height 692664/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:35 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692666, date 2021-07-25T23:52:22Z, hash 000000000000000000129cf35c83b73199fce65719bdd75a2de6e3873aa2b3ab
02:39:35 [Wallet autosave thread] WalletFiles - Save completed in 34.38 ms
02:39:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1966 tx/sec, 0 pre-filtered tx/sec, avg/last 1798.31/1048.61 kilobytes per sec, chain/common height 692666/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 2686 tx/sec, 0 pre-filtered tx/sec, avg/last 1912.73/2288.46 kilobytes per sec, chain/common height 692671/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4361 tx/sec, 0 pre-filtered tx/sec, avg/last 1869.96/2256.75 kilobytes per sec, chain/common height 692674/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1758 tx/sec, 0 pre-filtered tx/sec, avg/last 1834.34/918.03 kilobytes per sec, chain/common height 692675/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:38 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692675, date 2021-07-26T01:05:27Z, hash 0000000000000000000d1f927759281be89b7a34ae07bdb2995e94853b3dab8c
02:39:38 [Wallet autosave thread] WalletFiles - Save completed in 15.54 ms
02:39:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2601 tx/sec, 0 pre-filtered tx/sec, avg/last 1905.83/1429.88 kilobytes per sec, chain/common height 692676/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3274 tx/sec, 0 pre-filtered tx/sec, avg/last 1936.67/2241.60 kilobytes per sec, chain/common height 692678/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1117 tx/sec, 0 pre-filtered tx/sec, avg/last 1893.83/877.58 kilobytes per sec, chain/common height 692680/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:42 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692681, date 2021-07-26T01:57:16Z, hash 0000000000000000000807ffab679eccdbc8886d7fe42d77ed098a49c4369e22
02:39:42 [Wallet autosave thread] WalletFiles - Save completed in 21.01 ms
02:39:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 403 tx/sec, 0 pre-filtered tx/sec, avg/last 1821.78/308.94 kilobytes per sec, chain/common height 692682/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 980 tx/sec, 0 pre-filtered tx/sec, avg/last 1796.42/1165.20 kilobytes per sec, chain/common height 692683/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 390 tx/sec, 0 pre-filtered tx/sec, avg/last 1777.54/1065.81 kilobytes per sec, chain/common height 692684/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:45 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692687, date 2021-07-26T02:13:57Z, hash 0000000000000000000c60987001ffd7b0b188f11a14b947673a163bc9a891e8
02:39:45 [Wallet autosave thread] WalletFiles - Save completed in 20.41 ms
02:39:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 1149 tx/sec, 0 pre-filtered tx/sec, avg/last 1739.73/771.55 kilobytes per sec, chain/common height 692687/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 303 tx/sec, 0 pre-filtered tx/sec, avg/last 1600.80/197.04 kilobytes per sec, chain/common height 692688/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4366 tx/sec, 0 pre-filtered tx/sec, avg/last 1650.91/2814.89 kilobytes per sec, chain/common height 692690/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2232 tx/sec, 0 pre-filtered tx/sec, avg/last 1653.65/1422.49 kilobytes per sec, chain/common height 692691/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:48 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692691, date 2021-07-26T03:32:22Z, hash 000000000000000000004958e28feab4f5fa5d21ca435d76cf937824050e722e
02:39:48 [Wallet autosave thread] WalletFiles - Save completed in 21.77 ms
02:39:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1510.71/0.00 kilobytes per sec, chain/common height 692692/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 4419 tx/sec, 0 pre-filtered tx/sec, avg/last 1517.90/3280.92 kilobytes per sec, chain/common height 692697/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1279 tx/sec, 0 pre-filtered tx/sec, avg/last 1451.21/903.04 kilobytes per sec, chain/common height 692698/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1643 tx/sec, 0 pre-filtered tx/sec, avg/last 1439.23/1259.84 kilobytes per sec, chain/common height 692700/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:52 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692699, date 2021-07-26T04:05:50Z, hash 00000000000000000010b5897a9744557ba8712a3409d1f6bd6ccd01cd4ee220
02:39:52 [Wallet autosave thread] WalletFiles - Save completed in 20.28 ms
02:39:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1267 tx/sec, 0 pre-filtered tx/sec, avg/last 1409.05/1195.79 kilobytes per sec, chain/common height 692700/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1733 tx/sec, 0 pre-filtered tx/sec, avg/last 1340.56/1364.69 kilobytes per sec, chain/common height 692701/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1905 tx/sec, 0 pre-filtered tx/sec, avg/last 1345.04/1138.28 kilobytes per sec, chain/common height 692702/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:55 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692702, date 2021-07-26T04:43:54Z, hash 00000000000000000008ae907b7779f5b2d6da16c3cd79c40e171a42c883535f
02:39:55 [Wallet autosave thread] WalletFiles - Save completed in 17.90 ms
02:39:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2913 tx/sec, 0 pre-filtered tx/sec, avg/last 1321.36/1814.82 kilobytes per sec, chain/common height 692705/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3291 tx/sec, 0 pre-filtered tx/sec, avg/last 1311.35/2056.59 kilobytes per sec, chain/common height 692707/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3155 tx/sec, 0 pre-filtered tx/sec, avg/last 1371.39/2118.83 kilobytes per sec, chain/common height 692711/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:39:58 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692711, date 2021-07-26T05:56:35Z, hash 00000000000000000010be4a8183fef95e5632018e88181ed7cec18523aeb81c
02:39:58 [Wallet autosave thread] WalletFiles - Save completed in 20.09 ms
02:39:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1809 tx/sec, 0 pre-filtered tx/sec, avg/last 1366.50/1332.09 kilobytes per sec, chain/common height 692712/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 804 tx/sec, 0 pre-filtered tx/sec, avg/last 1313.01/1171.82 kilobytes per sec, chain/common height 692713/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2626 tx/sec, 0 pre-filtered tx/sec, avg/last 1339.36/1404.57 kilobytes per sec, chain/common height 692714/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:02 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692715, date 2021-07-26T07:23:34Z, hash 00000000000000000008562f5872ee7aef27c86c93522fbd8bf648ceb19b2d7b
02:40:02 [Wallet autosave thread] WalletFiles - Save completed in 19.86 ms
02:40:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2284 tx/sec, 0 pre-filtered tx/sec, avg/last 1391.42/1350.17 kilobytes per sec, chain/common height 692715/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4510 tx/sec, 0 pre-filtered tx/sec, avg/last 1472.15/2779.75 kilobytes per sec, chain/common height 692717/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2537 tx/sec, 0 pre-filtered tx/sec, avg/last 1496.24/1547.57 kilobytes per sec, chain/common height 692718/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2276 tx/sec, 0 pre-filtered tx/sec, avg/last 1532.98/1506.46 kilobytes per sec, chain/common height 692719/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:06 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692720, date 2021-07-26T07:54:55Z, hash 000000000000000000139ea8baf30b539632d878dfc2e40cc38f7c97f25b3274
02:40:06 [Wallet autosave thread] WalletFiles - Save completed in 23.56 ms
02:40:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4517 tx/sec, 0 pre-filtered tx/sec, avg/last 1669.34/2924.12 kilobytes per sec, chain/common height 692721/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3757 tx/sec, 0 pre-filtered tx/sec, avg/last 1710.97/3647.56 kilobytes per sec, chain/common height 692724/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1639.85/0.00 kilobytes per sec, chain/common height 692724/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:09 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692724, date 2021-07-26T08:25:52Z, hash 000000000000000000031c5103cc0fdfa0b2e90ad1494ab33b3734124af72f15
02:40:09 [Wallet autosave thread] WalletFiles - Save completed in 52.36 ms
02:40:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2457 tx/sec, 0 pre-filtered tx/sec, avg/last 1710.72/1417.39 kilobytes per sec, chain/common height 692725/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4073 tx/sec, 0 pre-filtered tx/sec, avg/last 1689.96/2865.88 kilobytes per sec, chain/common height 692727/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 943 tx/sec, 0 pre-filtered tx/sec, avg/last 1704.23/1188.40 kilobytes per sec, chain/common height 692728/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:12 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692730, date 2021-07-26T09:24:16Z, hash 000000000000000000104ea193dd29aea19a87fe5a91542c833cfc2bab09e11d
02:40:12 [Wallet autosave thread] WalletFiles - Save completed in 21.70 ms
02:40:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3736 tx/sec, 0 pre-filtered tx/sec, avg/last 1788.95/2954.12 kilobytes per sec, chain/common height 692730/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2591 tx/sec, 0 pre-filtered tx/sec, avg/last 1799.60/1408.78 kilobytes per sec, chain/common height 692731/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2459 tx/sec, 0 pre-filtered tx/sec, avg/last 1800.09/1374.64 kilobytes per sec, chain/common height 692732/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4607 tx/sec, 0 pre-filtered tx/sec, avg/last 1885.83/2852.98 kilobytes per sec, chain/common height 692734/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692735, date 2021-07-26T10:42:55Z, hash 00000000000000000012d7aeba52d8f780516074fdc8604f0cccca2490271e6c
02:40:16 [Wallet autosave thread] WalletFiles - Save completed in 15.93 ms
02:40:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2435 tx/sec, 0 pre-filtered tx/sec, avg/last 1862.98/1357.93 kilobytes per sec, chain/common height 692735/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5145 tx/sec, 0 pre-filtered tx/sec, avg/last 1905.96/2916.05 kilobytes per sec, chain/common height 692737/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1556 tx/sec, 0 pre-filtered tx/sec, avg/last 1863.34/1266.43 kilobytes per sec, chain/common height 692738/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3337 tx/sec, 0 pre-filtered tx/sec, avg/last 1925.36/2572.51 kilobytes per sec, chain/common height 692740/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:20 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692740, date 2021-07-26T11:19:21Z, hash 000000000000000000081cf5b89befe633b3942f8aeee529ac6dbb6c39d3deb3
02:40:20 [Wallet autosave thread] WalletFiles - Save completed in 13.78 ms
02:40:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3751 tx/sec, 0 pre-filtered tx/sec, avg/last 2008.15/2827.64 kilobytes per sec, chain/common height 692742/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1687 tx/sec, 0 pre-filtered tx/sec, avg/last 1995.91/1159.89 kilobytes per sec, chain/common height 692743/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2636 tx/sec, 0 pre-filtered tx/sec, avg/last 1998.21/1396.19 kilobytes per sec, chain/common height 692744/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:23 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692745, date 2021-07-26T12:14:41Z, hash 0000000000000000000676e13237f89a10991c392641abbb34b50d4d75201340
02:40:23 [Wallet autosave thread] WalletFiles - Save completed in 18.15 ms
02:40:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4843 tx/sec, 0 pre-filtered tx/sec, avg/last 2000.61/2827.65 kilobytes per sec, chain/common height 692746/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2968 tx/sec, 0 pre-filtered tx/sec, avg/last 2047.51/2485.65 kilobytes per sec, chain/common height 692748/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1104 tx/sec, 0 pre-filtered tx/sec, avg/last 2032.52/1206.56 kilobytes per sec, chain/common height 692749/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:26 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692750, date 2021-07-26T12:42:32Z, hash 0000000000000000000942db1a4ae6a1969399e5c203b622c24ebc107f33b9da
02:40:26 [Wallet autosave thread] WalletFiles - Save completed in 15.78 ms
02:40:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1356 tx/sec, 0 pre-filtered tx/sec, avg/last 1937.46/1022.96 kilobytes per sec, chain/common height 692750/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4662 tx/sec, 0 pre-filtered tx/sec, avg/last 1896.04/2819.10 kilobytes per sec, chain/common height 692752/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3493 tx/sec, 0 pre-filtered tx/sec, avg/last 2019.36/2466.35 kilobytes per sec, chain/common height 692754/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3793 tx/sec, 0 pre-filtered tx/sec, avg/last 2071.45/2459.34 kilobytes per sec, chain/common height 692756/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:29 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692756, date 2021-07-26T13:36:53Z, hash 0000000000000000000fd1083ffb73b1d3f5cbeba29eb33ffb2705f848048599
02:40:29 [Wallet autosave thread] WalletFiles - Save completed in 15.44 ms
02:40:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 669 tx/sec, 0 pre-filtered tx/sec, avg/last 1971.82/873.25 kilobytes per sec, chain/common height 692758/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4632 tx/sec, 0 pre-filtered tx/sec, avg/last 2049.51/2742.20 kilobytes per sec, chain/common height 692759/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2970 tx/sec, 0 pre-filtered tx/sec, avg/last 1977.87/1521.32 kilobytes per sec, chain/common height 692760/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:33 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692760, date 2021-07-26T14:19:59Z, hash 000000000000000000129cefd33686550f5a1667ba87ff55c76cb7b4f791924b
02:40:33 [Wallet autosave thread] WalletFiles - Save completed in 16.75 ms
02:40:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2731 tx/sec, 0 pre-filtered tx/sec, avg/last 1976.31/1377.64 kilobytes per sec, chain/common height 692761/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1907.58/0.00 kilobytes per sec, chain/common height 692762/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3463 tx/sec, 0 pre-filtered tx/sec, avg/last 1891.32/2527.67 kilobytes per sec, chain/common height 692763/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:36 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692764, date 2021-07-26T14:40:36Z, hash 000000000000000000129312f2bd7f9bc4f4295f429491aec02cd1a6f7ebc336
02:40:36 [Wallet autosave thread] WalletFiles - Save completed in 14.95 ms
02:40:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2030 tx/sec, 0 pre-filtered tx/sec, avg/last 1932.10/2173.62 kilobytes per sec, chain/common height 692765/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 3386 tx/sec, 0 pre-filtered tx/sec, avg/last 1891.73/2108.68 kilobytes per sec, chain/common height 692769/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2844 tx/sec, 0 pre-filtered tx/sec, avg/last 1895.27/1337.09 kilobytes per sec, chain/common height 692771/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:39 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692772, date 2021-07-26T15:29:40Z, hash 0000000000000000001450e6c47893b2f333f6994eed5a7ca26a064d0dedfaf1
02:40:39 [Wallet autosave thread] WalletFiles - Save completed in 19.47 ms
02:40:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4881 tx/sec, 0 pre-filtered tx/sec, avg/last 1910.55/2878.17 kilobytes per sec, chain/common height 692772/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1489 tx/sec, 0 pre-filtered tx/sec, avg/last 1834.86/1313.93 kilobytes per sec, chain/common height 692773/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5127 tx/sec, 0 pre-filtered tx/sec, avg/last 1921.48/2892.15 kilobytes per sec, chain/common height 692775/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3232 tx/sec, 0 pre-filtered tx/sec, avg/last 1978.93/2545.25 kilobytes per sec, chain/common height 692778/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:43 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692779, date 2021-07-26T16:08:34Z, hash 000000000000000000098881d522080000228643b64e8b3a2a09d8852fc1d9b5
02:40:43 [Wallet autosave thread] WalletFiles - Save completed in 20.59 ms
02:40:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2917 tx/sec, 0 pre-filtered tx/sec, avg/last 1929.37/1836.50 kilobytes per sec, chain/common height 692780/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1534 tx/sec, 0 pre-filtered tx/sec, avg/last 1867.08/1239.79 kilobytes per sec, chain/common height 692781/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 540 tx/sec, 0 pre-filtered tx/sec, avg/last 1835.22/569.37 kilobytes per sec, chain/common height 692783/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:46 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692785, date 2021-07-26T17:07:04Z, hash 0000000000000000000952957c6c8fface1ce0438ed68aad5318e749c16a04db
02:40:46 [Wallet autosave thread] WalletFiles - Save completed in 17.08 ms
02:40:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4514 tx/sec, 0 pre-filtered tx/sec, avg/last 1924.27/2804.01 kilobytes per sec, chain/common height 692785/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1726 tx/sec, 0 pre-filtered tx/sec, avg/last 1860.71/1547.86 kilobytes per sec, chain/common height 692786/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2884 tx/sec, 0 pre-filtered tx/sec, avg/last 1810.50/1462.20 kilobytes per sec, chain/common height 692787/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5644 tx/sec, 0 pre-filtered tx/sec, avg/last 1830.58/2860.78 kilobytes per sec, chain/common height 692789/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:50 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692790, date 2021-07-26T17:31:29Z, hash 0000000000000000000a948a646d14339ce4bde389aa309dbd3f4f2c495887a8
02:40:50 [Wallet autosave thread] WalletFiles - Save completed in 15.57 ms
02:40:50 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3707 tx/sec, 0 pre-filtered tx/sec, avg/last 1918.70/2635.80 kilobytes per sec, chain/common height 692791/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:51 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2691 tx/sec, 0 pre-filtered tx/sec, avg/last 1854.51/1458.31 kilobytes per sec, chain/common height 692793/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:52 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5271 tx/sec, 0 pre-filtered tx/sec, avg/last 1918.38/2798.74 kilobytes per sec, chain/common height 692794/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:53 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692795, date 2021-07-26T18:58:40Z, hash 00000000000000000010672039b4a8c6f356160c95a93fb054bb6ac30de5ac91
02:40:53 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2457 tx/sec, 0 pre-filtered tx/sec, avg/last 1923.51/1480.35 kilobytes per sec, chain/common height 692795/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:53 [Wallet autosave thread] WalletFiles - Save completed in 15.64 ms
02:40:54 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5561 tx/sec, 0 pre-filtered tx/sec, avg/last 2072.58/2981.35 kilobytes per sec, chain/common height 692797/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:55 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2696 tx/sec, 0 pre-filtered tx/sec, avg/last 2018.89/1453.89 kilobytes per sec, chain/common height 692798/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:56 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2343 tx/sec, 0 pre-filtered tx/sec, avg/last 1972.58/1247.38 kilobytes per sec, chain/common height 692799/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:57 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692799, date 2021-07-26T19:27:24Z, hash 00000000000000000006ecd61385f45b308c861de30190cacfca3506f00bde84
02:40:57 [Wallet autosave thread] WalletFiles - Save completed in 15.96 ms
02:40:57 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1867.15/0.00 kilobytes per sec, chain/common height 692800/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:58 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5374 tx/sec, 0 pre-filtered tx/sec, avg/last 1936.04/2714.95 kilobytes per sec, chain/common height 692801/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:40:59 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2673 tx/sec, 0 pre-filtered tx/sec, avg/last 1864.27/1442.71 kilobytes per sec, chain/common height 692802/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:00 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2748 tx/sec, 0 pre-filtered tx/sec, avg/last 1865.87/1345.97 kilobytes per sec, chain/common height 692803/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:00 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692803, date 2021-07-26T20:48:45Z, hash 000000000000000000114238af0ffb1564c10b0e87c6ab19ef71c58c8c27beda
02:41:00 [Wallet autosave thread] WalletFiles - Save completed in 22.49 ms
02:41:01 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 5492 tx/sec, 0 pre-filtered tx/sec, avg/last 1870.48/2984.39 kilobytes per sec, chain/common height 692805/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:02 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2954 tx/sec, 0 pre-filtered tx/sec, avg/last 1810.85/1352.60 kilobytes per sec, chain/common height 692806/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:03 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1719.02/0.00 kilobytes per sec, chain/common height 692806/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:03 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692807, date 2021-07-26T21:57:01Z, hash 00000000000000000012db43f1e223483313caaf7c9092d8874138503151ecd1
02:41:03 [Wallet autosave thread] WalletFiles - Save completed in 17.88 ms
02:41:04 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2683 tx/sec, 0 pre-filtered tx/sec, avg/last 1732.32/1505.70 kilobytes per sec, chain/common height 692807/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:05 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1703.85/0.00 kilobytes per sec, chain/common height 692808/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:06 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2153 tx/sec, 0 pre-filtered tx/sec, avg/last 1640.63/1539.72 kilobytes per sec, chain/common height 692808/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:07 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2636 tx/sec, 0 pre-filtered tx/sec, avg/last 1636.12/1457.60 kilobytes per sec, chain/common height 692809/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:08 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3112 tx/sec, 0 pre-filtered tx/sec, avg/last 1633.64/1412.62 kilobytes per sec, chain/common height 692810/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:08 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692810, date 2021-07-26T22:35:01Z, hash 00000000000000000006a197b49cd75eabdc5a6225f29206192f635efb623c1a
02:41:08 [Wallet autosave thread] WalletFiles - Save completed in 17.27 ms
02:41:09 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1490.60/0.00 kilobytes per sec, chain/common height 692811/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:10 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4316 tx/sec, 0 pre-filtered tx/sec, avg/last 1494.01/2703.87 kilobytes per sec, chain/common height 692812/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:11 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 867 tx/sec, 0 pre-filtered tx/sec, avg/last 1478.38/1145.83 kilobytes per sec, chain/common height 692813/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:12 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2756 tx/sec, 0 pre-filtered tx/sec, avg/last 1413.00/1491.14 kilobytes per sec, chain/common height 692814/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:12 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692814, date 2021-07-26T23:11:17Z, hash 00000000000000000002151e357ce30a149d69436d3b336fc8c9aa782860ab64
02:41:12 [Wallet autosave thread] WalletFiles - Save completed in 22.71 ms
02:41:13 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 6270 tx/sec, 0 pre-filtered tx/sec, avg/last 1482.79/2876.15 kilobytes per sec, chain/common height 692816/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:14 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1333.72/0.00 kilobytes per sec, chain/common height 692817/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:15 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2338 tx/sec, 0 pre-filtered tx/sec, avg/last 1335.50/1489.50 kilobytes per sec, chain/common height 692817/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:16 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692817, date 2021-07-27T00:18:19Z, hash 0000000000000000000e086a7bd427a7766600a51df66f18398f7ffac3c6f8a5
02:41:16 [Wallet autosave thread] WalletFiles - Save completed in 19.18 ms
02:41:16 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1267 tx/sec, 0 pre-filtered tx/sec, avg/last 1334.55/1228.25 kilobytes per sec, chain/common height 692818/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:17 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4358 tx/sec, 0 pre-filtered tx/sec, avg/last 1459.88/2506.71 kilobytes per sec, chain/common height 692820/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:18 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2749 tx/sec, 0 pre-filtered tx/sec, avg/last 1388.33/1283.94 kilobytes per sec, chain/common height 692821/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:19 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692822, date 2021-07-27T00:41:00Z, hash 00000000000000000014626e6ef5b50f8acaf19c9096dad30386358ea92b7a02
02:41:19 [Wallet autosave thread] WalletFiles - Save completed in 176.8 ms
02:41:19 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3409 tx/sec, 0 pre-filtered tx/sec, avg/last 1475.09/3177.75 kilobytes per sec, chain/common height 692823/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:20 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1407.79/0.00 kilobytes per sec, chain/common height 692823/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:21 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2658 tx/sec, 0 pre-filtered tx/sec, avg/last 1405.03/2929.18 kilobytes per sec, chain/common height 692825/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:22 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692827, date 2021-07-27T01:02:05Z, hash 0000000000000000000aa22e854777d079c0807acaaf55c77686ebfc5d17c6d2
02:41:22 [Wallet autosave thread] WalletFiles - Save completed in 19.15 ms
02:41:22 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 2492 tx/sec, 0 pre-filtered tx/sec, avg/last 1453.50/2322.01 kilobytes per sec, chain/common height 692827/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:23 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 0 blocks/sec, 0 tx/sec, 0 pre-filtered tx/sec, avg/last 1453.50/0.00 kilobytes per sec, chain/common height 692828/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:24 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4987 tx/sec, 0 pre-filtered tx/sec, avg/last 1519.60/2827.81 kilobytes per sec, chain/common height 692829/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:25 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 1172 tx/sec, 0 pre-filtered tx/sec, avg/last 1576.70/1142.00 kilobytes per sec, chain/common height 692830/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:26 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2490 tx/sec, 0 pre-filtered tx/sec, avg/last 1570.49/1415.47 kilobytes per sec, chain/common height 692831/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:26 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692831, date 2021-07-27T02:23:23Z, hash 00000000000000000008594e6a6a9ffaeb3027de250bf3fbef9854808b4fafca
02:41:26 [Wallet autosave thread] WalletFiles - Save completed in 27.64 ms
02:41:27 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4431 tx/sec, 0 pre-filtered tx/sec, avg/last 1623.32/2514.11 kilobytes per sec, chain/common height 692833/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:28 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 5 blocks/sec, 3282 tx/sec, 0 pre-filtered tx/sec, avg/last 1678.21/2510.54 kilobytes per sec, chain/common height 692838/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:29 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 6 blocks/sec, 4221 tx/sec, 0 pre-filtered tx/sec, avg/last 1798.25/2400.81 kilobytes per sec, chain/common height 692844/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:30 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692845, date 2021-07-27T04:03:03Z, hash 0000000000000000000b45709e084741fc3f6fb468783fa52f1cba3194754e3a
02:41:30 [Wallet autosave thread] WalletFiles - Save completed in 31.08 ms
02:41:30 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 739 tx/sec, 0 pre-filtered tx/sec, avg/last 1713.97/1018.28 kilobytes per sec, chain/common height 692845/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:31 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3966 tx/sec, 0 pre-filtered tx/sec, avg/last 1805.58/2977.95 kilobytes per sec, chain/common height 692848/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:32 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2671 tx/sec, 0 pre-filtered tx/sec, avg/last 1804.41/1467.83 kilobytes per sec, chain/common height 692852/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:33 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2657 tx/sec, 0 pre-filtered tx/sec, avg/last 1728.20/1351.92 kilobytes per sec, chain/common height 692856/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:33 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692856, date 2021-07-27T05:23:51Z, hash 00000000000000000003e1f42194c333fba81df8fa9cc99b26a695c7bb9755af
02:41:33 [Wallet autosave thread] WalletFiles - Save completed in 50.21 ms
02:41:34 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 806 tx/sec, 0 pre-filtered tx/sec, avg/last 1754.70/529.91 kilobytes per sec, chain/common height 692858/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:35 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 5884 tx/sec, 0 pre-filtered tx/sec, avg/last 1845.24/3300.40 kilobytes per sec, chain/common height 692861/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:36 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3349 tx/sec, 0 pre-filtered tx/sec, avg/last 1927.29/2869.16 kilobytes per sec, chain/common height 692863/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:37 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692863, date 2021-07-27T06:56:23Z, hash 000000000000000000011c32b685c2433b899843d274041a660f591e9fdfe6bc
02:41:37 [Wallet autosave thread] WalletFiles - Save completed in 238.8 ms
02:41:37 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 674 tx/sec, 0 pre-filtered tx/sec, avg/last 1889.54/1751.71 kilobytes per sec, chain/common height 692864/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:38 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 873 tx/sec, 0 pre-filtered tx/sec, avg/last 1908.59/1664.96 kilobytes per sec, chain/common height 692866/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:39 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3911 tx/sec, 0 pre-filtered tx/sec, avg/last 1891.38/2833.59 kilobytes per sec, chain/common height 692867/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:40 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692869, date 2021-07-27T07:52:25Z, hash 0000000000000000000bf102940b2bd9105224ad39eb1e2667a60d253fcd563e
02:41:40 [Wallet autosave thread] WalletFiles - Save completed in 13.56 ms
02:41:40 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 4413 tx/sec, 0 pre-filtered tx/sec, avg/last 2080.11/3774.51 kilobytes per sec, chain/common height 692870/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:41 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 4 blocks/sec, 2832 tx/sec, 0 pre-filtered tx/sec, avg/last 2071.29/2752.75 kilobytes per sec, chain/common height 692874/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:42 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 1999 tx/sec, 0 pre-filtered tx/sec, avg/last 2017.31/1242.54 kilobytes per sec, chain/common height 692876/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:43 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692877, date 2021-07-27T08:37:36Z, hash 0000000000000000000e1107fee0719c7b858a552c0392076b41b3ac441c2b75
02:41:43 [Wallet autosave thread] WalletFiles - Save completed in 19.94 ms
02:41:43 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2666 tx/sec, 0 pre-filtered tx/sec, avg/last 2083.95/1332.82 kilobytes per sec, chain/common height 692878/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:44 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 7827 tx/sec, 0 pre-filtered tx/sec, avg/last 2131.63/3781.32 kilobytes per sec, chain/common height 692880/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:45 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 2883 tx/sec, 0 pre-filtered tx/sec, avg/last 2147.10/1451.43 kilobytes per sec, chain/common height 692881/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:46 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 3907 tx/sec, 0 pre-filtered tx/sec, avg/last 2197.73/2428.07 kilobytes per sec, chain/common height 692883/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:46 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692883, date 2021-07-27T10:08:43Z, hash 00000000000000000012b5a70b9f8090a1ea97692a3b5417fa6c3a61ad2bb925
02:41:46 [Wallet autosave thread] WalletFiles - Save completed in 17.37 ms
02:41:47 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 3 blocks/sec, 3519 tx/sec, 0 pre-filtered tx/sec, avg/last 2186.17/2282.98 kilobytes per sec, chain/common height 692886/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:48 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 1 blocks/sec, 3348 tx/sec, 0 pre-filtered tx/sec, avg/last 2130.64/1399.83 kilobytes per sec, chain/common height 692887/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:49 [PeerGroup Thread] PeerGroup$ChainDownloadSpeedCalculator - 2 blocks/sec, 4712 tx/sec, 0 pre-filtered tx/sec, avg/last 2137.74/2542.89 kilobytes per sec, chain/common height 692889/695354, not stalled (threshold <0.78 KB/sec for 20 seconds)
02:41:50 [Wallet autosave thread] WalletFiles - Background saving wallet; last seen block is height 692890, date 2021-07-27T11:15:06Z, hash 00000000000000000007953722159cf324e340469cc5fc68738cb5c2fcd0b56a
02:41:50 [Wallet autosave thread] WalletFiles - Save completed in 42.36 ms