plox 0.3.7

Turn messy logs into clean graphs. Plot fields or regex matches over time, mark events, count occurrences — all from your terminal.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
2025-05-12 16:46:40.010 TRACE txpool: checker duration=1.070527ms
2025-05-12 16:46:40.022 TRACE txpool: checker duration=1.065988ms
2025-05-12 16:46:40.033 TRACE txpool: checker duration=1.061968ms
2025-05-12 16:46:40.044 TRACE txpool: checker duration=1.073028ms
2025-05-12 16:46:40.056 TRACE txpool: checker duration=1.060827ms
2025-05-12 16:46:40.067 TRACE txpool: checker duration=1.048587ms
2025-05-12 16:46:40.079 TRACE txpool: checker duration=1.088528ms
2025-05-12 16:46:40.091 TRACE txpool: checker duration=1.019498ms
2025-05-12 16:46:40.101 TRACE txpool: checker duration=1.050398ms
2025-05-12 16:46:40.113 TRACE txpool: checker duration=1.053418ms
2025-05-12 16:46:40.127 TRACE txpool: checker duration=1.078677ms
2025-05-12 16:46:40.138 TRACE txpool: checker duration=1.080928ms
2025-05-12 16:46:40.151 TRACE txpool: checker duration=1.064417ms
2025-05-12 16:46:40.162 TRACE txpool: checker duration=1.068478ms
2025-05-12 16:46:40.173 TRACE txpool: checker duration=1.093968ms
2025-05-12 16:46:40.186 TRACE txpool: checker duration=2.070655ms
2025-05-12 16:46:40.197 TRACE txpool: checker duration=1.040448ms
2025-05-12 16:46:40.209 TRACE txpool: checker duration=1.070427ms
2025-05-12 16:46:40.220 TRACE txpool: checker duration=1.068618ms
2025-05-12 16:46:40.232 TRACE txpool: checker duration=1.064717ms
2025-05-12 16:46:40.243 TRACE txpool: checker duration=1.068197ms
2025-05-12 16:46:40.256 TRACE txpool: checker duration=1.062697ms
2025-05-12 16:46:40.267 TRACE txpool: checker duration=1.062978ms
2025-05-12 16:46:40.278 TRACE txpool: checker duration=1.063517ms
2025-05-12 16:46:40.290 TRACE txpool: checker duration=1.062648ms
2025-05-12 16:46:40.304 TRACE txpool: checker duration=1.063568ms
2025-05-12 16:46:40.315 TRACE txpool: checker duration=1.062897ms
2025-05-12 16:46:40.326 TRACE txpool: checker duration=1.064618ms
2025-05-12 16:46:40.338 TRACE txpool: checker duration=1.062207ms
2025-05-12 16:46:40.349 TRACE txpool: checker duration=1.065468ms
2025-05-12 16:46:40.360 TRACE txpool: checker duration=1.065277ms
2025-05-12 16:46:40.373 TRACE txpool: checker duration=1.065157ms
2025-05-12 16:46:40.384 TRACE txpool: checker duration=1.063877ms
2025-05-12 16:46:40.395 TRACE txpool: checker duration=1.152157ms
2025-05-12 16:46:40.406 TRACE txpool: checker duration=1.065207ms
2025-05-12 16:46:40.418 TRACE txpool: checker duration=1.064737ms
2025-05-12 16:46:40.430 TRACE txpool: checker duration=2.064075ms
2025-05-12 16:46:40.440 TRACE txpool: checker duration=1.068847ms
2025-05-12 16:46:40.452 TRACE txpool: checker duration=1.067668ms
2025-05-12 16:46:40.464 TRACE txpool: checker duration=2.064345ms
2025-05-12 16:46:40.474 TRACE txpool: checker duration=1.063407ms
2025-05-12 16:46:40.486 TRACE txpool: checker duration=1.068357ms
2025-05-12 16:46:40.498 TRACE txpool: checker duration=2.064005ms
2025-05-12 16:46:40.508 TRACE txpool: checker duration=1.063717ms
2025-05-12 16:46:40.522 TRACE txpool: checker duration=1.063718ms
2025-05-12 16:46:40.533 TRACE txpool: checker duration=1.068438ms
2025-05-12 16:46:40.545 TRACE txpool: checker duration=1.064798ms
2025-05-12 16:46:40.556 TRACE txpool: checker duration=1.063697ms
2025-05-12 16:46:40.567 TRACE txpool: checker duration=1.066018ms
2025-05-12 16:46:40.579 TRACE txpool: checker duration=1.064408ms
2025-05-12 16:46:40.590 TRACE txpool: checker duration=1.062968ms
2025-05-12 16:46:40.601 TRACE txpool: checker duration=1.064457ms
2025-05-12 16:46:40.613 TRACE txpool: checker duration=2.065166ms
2025-05-12 16:46:40.626 TRACE txpool: checker duration=1.066198ms
2025-05-12 16:46:40.639 TRACE txpool: checker duration=2.586984ms
2025-05-12 16:46:40.651 TRACE txpool: checker duration=1.068977ms
2025-05-12 16:46:40.663 TRACE txpool: checker duration=2.063375ms
2025-05-12 16:46:40.673 TRACE txpool: checker duration=1.063957ms
2025-05-12 16:46:40.685 TRACE txpool: checker duration=1.063188ms
2025-05-12 16:46:40.697 TRACE txpool: checker duration=1.062367ms
2025-05-12 16:46:40.708 TRACE txpool: checker duration=1.066287ms
2025-05-12 16:46:40.720 TRACE txpool: checker duration=1.064208ms
2025-05-12 16:46:40.731 TRACE txpool: checker duration=1.062328ms
2025-05-12 16:46:40.742 TRACE txpool: checker duration=1.024297ms
2025-05-12 16:46:40.755 TRACE txpool: checker duration=1.062297ms
2025-05-12 16:46:40.767 TRACE txpool: checker duration=1.072017ms
2025-05-12 16:46:40.779 TRACE txpool: checker duration=1.063908ms
2025-05-12 16:46:40.790 TRACE txpool: checker duration=1.063698ms
2025-05-12 16:46:40.801 TRACE txpool: checker duration=1.064538ms
2025-05-12 16:46:40.813 TRACE txpool: checker duration=1.068707ms
2025-05-12 16:46:40.824 TRACE txpool: checker duration=1.063558ms
2025-05-12 16:46:40.835 TRACE txpool: checker duration=1.065197ms
2025-05-12 16:46:40.847 TRACE txpool: checker duration=1.062448ms
2025-05-12 16:46:40.858 TRACE txpool: checker duration=1.060217ms
2025-05-12 16:46:40.872 TRACE txpool: checker duration=1.068718ms
2025-05-12 16:46:40.883 TRACE txpool: checker duration=1.064007ms
2025-05-12 16:46:40.894 TRACE txpool: checker duration=1.064838ms
2025-05-12 16:46:40.906 TRACE txpool: checker duration=1.061948ms
2025-05-12 16:46:40.917 TRACE txpool: checker duration=1.062128ms
2025-05-12 16:46:40.928 TRACE txpool: checker duration=1.064067ms
2025-05-12 16:46:40.940 TRACE txpool: checker duration=1.063688ms
2025-05-12 16:46:40.951 TRACE txpool: checker duration=1.063067ms
2025-05-12 16:46:40.962 TRACE txpool: checker duration=1.069228ms
2025-05-12 16:46:40.974 TRACE txpool: checker duration=1.064598ms
2025-05-12 16:46:40.988 TRACE txpool: checker duration=1.063808ms
2025-05-12 16:46:40.999 TRACE txpool: checker duration=1.064257ms
2025-05-12 16:46:41.011 TRACE txpool: checker duration=1.069188ms
2025-05-12 16:46:41.022 TRACE txpool: checker duration=1.071227ms
2025-05-12 16:46:41.034 TRACE txpool: checker duration=1.064027ms
2025-05-12 16:46:41.046 TRACE txpool: checker duration=1.064298ms
2025-05-12 16:46:41.057 TRACE txpool: checker duration=1.069177ms
2025-05-12 16:46:41.068 TRACE txpool: checker duration=1.069878ms
2025-05-12 16:46:41.080 TRACE txpool: checker duration=1.067567ms
2025-05-12 16:46:41.091 TRACE txpool: checker duration=1.065448ms
2025-05-12 16:46:41.101 TRACE txpool: checker duration=1.059888ms
2025-05-12 16:46:41.113 TRACE txpool: checker duration=1.060497ms
2025-05-12 16:46:41.127 TRACE txpool: checker duration=1.063137ms
2025-05-12 16:46:41.138 TRACE txpool: checker duration=1.063618ms
2025-05-12 16:46:41.149 TRACE txpool: checker duration=1.064197ms
2025-05-12 16:46:41.161 TRACE txpool: checker duration=1.063428ms
2025-05-12 16:46:41.172 TRACE txpool: checker duration=1.064517ms
2025-05-12 16:46:41.183 TRACE txpool: checker duration=1.069818ms
2025-05-12 16:46:41.195 TRACE txpool: checker duration=1.063347ms
2025-05-12 16:46:41.206 TRACE txpool: checker duration=1.062368ms
2025-05-12 16:46:41.217 TRACE txpool: checker duration=1.068147ms
2025-05-12 16:46:41.229 TRACE txpool: checker duration=1.607376ms
2025-05-12 16:46:41.242 TRACE txpool: checker duration=1.063857ms
2025-05-12 16:46:41.253 TRACE txpool: checker duration=1.063057ms
2025-05-12 16:46:41.264 TRACE txpool: checker duration=1.075588ms
2025-05-12 16:46:41.278 TRACE txpool: checker duration=1.064317ms
2025-05-12 16:46:41.289 TRACE txpool: checker duration=1.063708ms
2025-05-12 16:46:41.301 TRACE txpool: checker duration=1.063817ms
2025-05-12 16:46:41.312 TRACE txpool: checker duration=1.063038ms
2025-05-12 16:46:41.323 TRACE txpool: checker duration=1.068677ms
2025-05-12 16:46:41.335 TRACE txpool: checker duration=1.064418ms
2025-05-12 16:46:41.347 TRACE txpool: checker duration=1.067368ms
2025-05-12 16:46:41.358 TRACE txpool: checker duration=1.070847ms
2025-05-12 16:46:41.370 TRACE txpool: checker duration=1.067538ms
2025-05-12 16:46:41.381 TRACE txpool: checker duration=1.063717ms
2025-05-12 16:46:41.392 TRACE txpool: checker duration=1.069138ms
2025-05-12 16:46:41.402 TRACE txpool: checker duration=1.071828ms
2025-05-12 16:46:41.414 TRACE txpool: checker duration=1.070317ms
2025-05-12 16:46:41.425 TRACE txpool: checker duration=1.064177ms
2025-05-12 16:46:41.436 TRACE txpool: checker duration=1.059077ms
2025-05-12 16:46:41.449 TRACE txpool: checker duration=1.068697ms
2025-05-12 16:46:41.461 TRACE txpool: checker duration=2.061486ms
2025-05-12 16:46:41.475 TRACE txpool: checker duration=1.066047ms
2025-05-12 16:46:41.486 TRACE txpool: checker duration=1.062898ms
2025-05-12 16:46:41.497 TRACE txpool: checker duration=1.069087ms
2025-05-12 16:46:41.509 TRACE txpool: checker duration=1.064127ms
2025-05-12 16:46:41.520 TRACE txpool: checker duration=1.065267ms
2025-05-12 16:46:41.534 TRACE txpool: checker duration=3.114183ms
2025-05-12 16:46:41.546 TRACE txpool: checker duration=1.064118ms
2025-05-12 16:46:41.557 TRACE txpool: checker duration=1.069178ms
2025-05-12 16:46:41.568 TRACE txpool: checker duration=1.062598ms
2025-05-12 16:46:41.582 TRACE txpool: checker duration=1.064988ms
2025-05-12 16:46:41.594 TRACE txpool: checker duration=1.069398ms
2025-05-12 16:46:41.606 TRACE txpool: checker duration=1.064187ms
2025-05-12 16:46:41.617 TRACE txpool: checker duration=1.068267ms
2025-05-12 16:46:41.630 TRACE txpool: checker duration=1.042817ms
2025-05-12 16:46:41.641 TRACE txpool: checker duration=1.063557ms
2025-05-12 16:46:41.652 TRACE txpool: checker duration=1.049127ms
2025-05-12 16:46:41.665 TRACE txpool: checker duration=1.225287ms
2025-05-12 16:46:41.676 TRACE txpool: checker duration=1.060438ms
2025-05-12 16:46:41.689 TRACE txpool: checker duration=1.059578ms
2025-05-12 16:46:41.702 TRACE txpool: checker duration=1.065877ms
2025-05-12 16:46:41.714 TRACE txpool: checker duration=1.068718ms
2025-05-12 16:46:41.726 TRACE txpool: checker duration=1.064298ms
2025-05-12 16:46:41.737 TRACE txpool: checker duration=1.062798ms
2025-05-12 16:46:41.748 TRACE txpool: checker duration=1.067937ms
2025-05-12 16:46:41.760 TRACE txpool: checker duration=1.063627ms
2025-05-12 16:46:41.771 TRACE txpool: checker duration=1.064057ms
2025-05-12 16:46:41.782 TRACE txpool: checker duration=1.069727ms
2025-05-12 16:46:41.794 TRACE txpool: checker duration=1.063988ms
2025-05-12 16:46:41.805 TRACE txpool: checker duration=1.062898ms
2025-05-12 16:46:41.816 TRACE txpool: checker duration=1.063467ms
2025-05-12 16:46:41.828 TRACE txpool: checker duration=1.063158ms
2025-05-12 16:46:41.840 TRACE txpool: checker duration=1.063368ms
2025-05-12 16:46:41.852 TRACE txpool: checker duration=1.065297ms
2025-05-12 16:46:41.863 TRACE txpool: checker duration=1.063608ms
2025-05-12 16:46:41.874 TRACE txpool: checker duration=1.067027ms
2025-05-12 16:46:41.886 TRACE txpool: checker duration=1.068078ms
2025-05-12 16:46:41.897 TRACE txpool: checker duration=1.062597ms
2025-05-12 16:46:41.908 TRACE txpool: checker duration=1.063438ms
2025-05-12 16:46:41.920 TRACE txpool: checker duration=1.062537ms
2025-05-12 16:46:41.931 TRACE txpool: checker duration=1.065538ms
2025-05-12 16:46:41.942 TRACE txpool: checker duration=1.059637ms
2025-05-12 16:46:41.954 TRACE txpool: checker duration=1.066308ms
2025-05-12 16:46:41.968 TRACE txpool: checker duration=2.065295ms
2025-05-12 16:46:41.978 TRACE txpool: checker duration=1.064598ms
2025-05-12 16:46:41.990 TRACE txpool: checker duration=1.064267ms
2025-05-12 16:46:42.002 TRACE txpool: checker duration=2.064026ms
2025-05-12 16:46:42.012 TRACE txpool: checker duration=1.063437ms
2025-05-12 16:46:42.024 TRACE txpool: checker duration=813.538µs
2025-05-12 16:46:42.037 TRACE txpool: checker duration=1.041347ms
2025-05-12 16:46:42.049 TRACE txpool: checker duration=1.063518ms
2025-05-12 16:46:42.060 TRACE txpool: checker duration=1.065277ms
2025-05-12 16:46:42.075 TRACE txpool: checker duration=1.059858ms
2025-05-12 16:46:42.089 TRACE txpool: checker duration=1.062847ms
2025-05-12 16:46:42.100 TRACE txpool: checker duration=1.053798ms
2025-05-12 16:46:42.112 TRACE txpool: checker duration=1.065117ms
2025-05-12 16:46:42.123 TRACE txpool: checker duration=1.064268ms
2025-05-12 16:46:42.134 TRACE txpool: checker duration=1.073497ms
2025-05-12 16:46:42.146 TRACE txpool: checker duration=1.064678ms
2025-05-12 16:46:42.157 TRACE txpool: checker duration=1.063257ms
2025-05-12 16:46:42.168 TRACE txpool: checker duration=1.064548ms
2025-05-12 16:46:42.180 TRACE txpool: checker duration=1.069587ms
2025-05-12 16:46:42.191 TRACE txpool: checker duration=1.066208ms
2025-05-12 16:46:42.203 TRACE txpool: checker duration=1.066858ms
2025-05-12 16:46:42.215 TRACE txpool: checker duration=1.064567ms
2025-05-12 16:46:42.227 TRACE txpool: checker duration=2.062586ms
2025-05-12 16:46:42.242 TRACE txpool: checker duration=1.064208ms
2025-05-12 16:46:42.253 TRACE txpool: checker duration=1.063538ms
2025-05-12 16:46:42.264 TRACE txpool: checker duration=1.064558ms
2025-05-12 16:46:42.276 TRACE txpool: checker duration=1.063967ms
2025-05-12 16:46:42.287 TRACE txpool: checker duration=1.062908ms
2025-05-12 16:46:42.298 TRACE txpool: checker duration=1.064408ms
2025-05-12 16:46:42.310 TRACE txpool: checker duration=1.062538ms
2025-05-12 16:46:42.321 TRACE txpool: checker duration=1.067828ms
2025-05-12 16:46:42.332 TRACE txpool: checker duration=1.068547ms
2025-05-12 16:46:42.344 TRACE txpool: checker duration=1.005988ms
2025-05-12 16:46:42.362 TRACE txpool: checker duration=1.068488ms
2025-05-12 16:46:42.376 TRACE txpool: checker duration=1.102337ms
2025-05-12 16:46:42.389 TRACE txpool: checker duration=1.055687ms
2025-05-12 16:46:42.402 TRACE txpool: checker duration=1.079367ms
2025-05-12 16:46:42.413 TRACE txpool: checker duration=1.113818ms
2025-05-12 16:46:42.425 TRACE txpool: checker duration=2.038275ms
2025-05-12 16:46:42.436 TRACE txpool: checker duration=1.061508ms
2025-05-12 16:46:42.447 TRACE txpool: checker duration=1.095947ms
2025-05-12 16:46:42.460 TRACE txpool: checker duration=1.063128ms
2025-05-12 16:46:42.470 TRACE txpool: checker duration=1.062777ms
2025-05-12 16:46:42.482 TRACE txpool: checker duration=1.067657ms
2025-05-12 16:46:42.493 TRACE txpool: checker duration=1.062747ms
2025-05-12 16:46:42.507 TRACE txpool: checker duration=1.083477ms
2025-05-12 16:46:42.517 TRACE txpool: checker duration=1.038588ms
2025-05-12 16:46:42.531 TRACE txpool: checker duration=1.077008ms
2025-05-12 16:46:42.541 TRACE txpool: checker duration=1.061687ms
2025-05-12 16:46:42.551 TRACE txpool: checker duration=1.077877ms
2025-05-12 16:46:42.564 TRACE txpool: checker duration=1.218187ms
2025-05-12 16:46:42.578 TRACE txpool: checker duration=1.032497ms
2025-05-12 16:46:42.599 TRACE txpool: checker duration=1.014628ms
2025-05-12 16:46:42.631 TRACE txpool: checker duration=1.006868ms
2025-05-12 16:46:42.641 TRACE txpool: checker duration=1.008878ms
2025-05-12 16:46:42.651 TRACE txpool: checker duration=998.817µs
2025-05-12 16:46:42.661 TRACE txpool: checker duration=1.041287ms
2025-05-12 16:46:42.671 TRACE txpool: checker duration=1.041648ms
2025-05-12 16:46:42.681 TRACE txpool: checker duration=997.198µs
2025-05-12 16:46:42.691 TRACE txpool: checker duration=1.009798ms
2025-05-12 16:46:42.701 TRACE txpool: checker duration=1.003547ms
2025-05-12 16:46:42.711 TRACE txpool: checker duration=1.003058ms
2025-05-12 16:46:42.721 TRACE txpool: checker duration=996.238µs
2025-05-12 16:46:42.731 TRACE txpool: checker duration=991.078µs
2025-05-12 16:46:42.741 TRACE txpool: checker duration=979.378µs
2025-05-12 16:46:42.751 TRACE txpool: checker duration=993.787µs
2025-05-12 16:46:42.761 TRACE txpool: checker duration=992.008µs
2025-05-12 16:46:42.771 TRACE txpool: checker duration=936.458µs
2025-05-12 16:46:42.781 TRACE txpool: checker duration=1.007028ms
2025-05-12 16:46:42.791 TRACE txpool: checker duration=1.091188ms
2025-05-12 16:46:42.801 TRACE txpool: checker duration=1.354988ms
2025-05-12 16:46:42.811 TRACE txpool: checker duration=999.577µs
2025-05-12 16:46:42.821 TRACE txpool: checker duration=1.019328ms
2025-05-12 16:46:42.832 TRACE txpool: checker duration=1.045328ms
2025-05-12 16:46:42.842 TRACE txpool: checker duration=965.308µs
2025-05-12 16:46:42.852 TRACE txpool: checker duration=1.134798ms
2025-05-12 16:46:42.862 TRACE txpool: checker duration=853.818µs
2025-05-12 16:46:42.872 TRACE txpool: checker duration=1.010077ms
2025-05-12 16:46:42.882 TRACE txpool: checker duration=941.158µs
2025-05-12 16:46:42.892 TRACE txpool: checker duration=997.798µs
2025-05-12 16:46:42.902 TRACE txpool: checker duration=993.108µs
2025-05-12 16:46:42.912 TRACE txpool: checker duration=1.006588ms
2025-05-12 16:46:42.922 TRACE txpool: checker duration=964.498µs
2025-05-12 16:46:42.932 TRACE txpool: checker duration=1.025258ms
2025-05-12 16:46:42.942 TRACE txpool: checker duration=991.288µs
2025-05-12 16:46:42.952 TRACE txpool: checker duration=996.788µs
2025-05-12 16:46:42.962 TRACE txpool: checker duration=997.178µs
2025-05-12 16:46:42.972 TRACE txpool: checker duration=1.004617ms
2025-05-12 16:46:42.982 TRACE txpool: checker duration=1.071857ms
2025-05-12 16:46:42.992 TRACE txpool: checker duration=996.938µs
2025-05-12 16:46:43.002 TRACE txpool: checker duration=987.598µs
2025-05-12 16:46:43.012 TRACE txpool: checker duration=1.006228ms
2025-05-12 16:46:43.022 TRACE txpool: checker duration=1.036888ms
2025-05-12 16:46:43.032 TRACE txpool: checker duration=981.768µs
2025-05-12 16:46:43.042 TRACE txpool: checker duration=993.078µs
2025-05-12 16:46:43.052 TRACE txpool: checker duration=988.918µs
2025-05-12 16:46:43.062 TRACE txpool: checker duration=981.028µs
2025-05-12 16:46:43.072 TRACE txpool: checker duration=991.648µs
2025-05-12 16:46:43.082 TRACE txpool: checker duration=995.687µs
2025-05-12 16:46:43.092 TRACE txpool: checker duration=987.918µs
2025-05-12 16:46:43.102 TRACE txpool: checker duration=964.008µs
2025-05-12 16:46:43.112 TRACE txpool: checker duration=799.758µs
2025-05-12 16:46:43.122 TRACE txpool: checker duration=1.163588ms
2025-05-12 16:46:43.132 TRACE txpool: checker duration=950.128µs
2025-05-12 16:46:43.142 TRACE txpool: checker duration=1.007748ms
2025-05-12 16:46:43.154 TRACE txpool: checker duration=1.069478ms
2025-05-12 16:46:43.164 TRACE txpool: checker duration=893.818µs
2025-05-12 16:46:43.174 TRACE txpool: checker duration=874.558µs
2025-05-12 16:46:43.184 TRACE txpool: checker duration=1.011648ms
2025-05-12 16:46:43.194 TRACE txpool: checker duration=994.038µs
2025-05-12 16:46:43.204 TRACE txpool: checker duration=983.548µs
2025-05-12 16:46:43.214 TRACE txpool: checker duration=1.365477ms
2025-05-12 16:46:43.224 TRACE txpool: checker duration=1.010617ms
2025-05-12 16:46:43.234 TRACE txpool: checker duration=869.738µs
2025-05-12 16:46:43.244 TRACE txpool: checker duration=979.198µs
2025-05-12 16:46:43.254 TRACE txpool: checker duration=966.788µs
2025-05-12 16:46:43.264 TRACE txpool: checker duration=1.032688ms
2025-05-12 16:46:43.274 TRACE txpool: checker duration=964.817µs
2025-05-12 16:46:43.284 TRACE txpool: checker duration=1.019627ms
2025-05-12 16:46:43.294 TRACE txpool: checker duration=912.728µs
2025-05-12 16:46:43.304 TRACE txpool: checker duration=1.006098ms
2025-05-12 16:46:43.314 TRACE txpool: checker duration=930.298µs
2025-05-12 16:46:43.324 TRACE txpool: checker duration=1.161747ms
2025-05-12 16:46:43.334 TRACE txpool: checker duration=802.388µs
2025-05-12 16:46:43.344 TRACE txpool: checker duration=867.498µs
2025-05-12 16:46:43.354 TRACE txpool: checker duration=992.598µs
2025-05-12 16:46:43.364 TRACE txpool: checker duration=989.678µs
2025-05-12 16:46:43.374 TRACE txpool: checker duration=1.010498ms
2025-05-12 16:46:43.384 TRACE txpool: checker duration=962.577µs
2025-05-12 16:46:43.394 TRACE txpool: checker duration=1.020868ms
2025-05-12 16:46:43.404 TRACE txpool: checker duration=965.188µs
2025-05-12 16:46:43.414 TRACE txpool: checker duration=963.578µs
2025-05-12 16:46:43.424 TRACE txpool: checker duration=993.637µs
2025-05-12 16:46:43.434 TRACE txpool: checker duration=1.004417ms
2025-05-12 16:46:43.444 TRACE txpool: checker duration=1.009327ms
2025-05-12 16:46:43.454 TRACE txpool: checker duration=998.448µs
2025-05-12 16:46:43.464 TRACE txpool: checker duration=990.728µs
2025-05-12 16:46:43.477 TRACE txpool: checker duration=2.078285ms
2025-05-12 16:46:43.488 TRACE txpool: checker duration=1.074697ms
2025-05-12 16:46:43.499 TRACE txpool: checker duration=1.389697ms
2025-05-12 16:46:43.509 TRACE txpool: checker duration=1.025357ms
2025-05-12 16:46:43.519 TRACE txpool: checker duration=944.418µs
2025-05-12 16:46:43.529 TRACE txpool: checker duration=1.027288ms
2025-05-12 16:46:43.539 TRACE txpool: checker duration=966.348µs
2025-05-12 16:46:43.549 TRACE txpool: checker duration=721.568µs
2025-05-12 16:46:43.559 TRACE txpool: checker duration=1.131177ms
2025-05-12 16:46:43.569 TRACE txpool: checker duration=1.016517ms
2025-05-12 16:46:43.579 TRACE txpool: checker duration=611.959µs
2025-05-12 16:46:43.589 TRACE txpool: checker duration=964.968µs
2025-05-12 16:46:43.599 TRACE txpool: checker duration=527.599µs
2025-05-12 16:46:43.609 TRACE txpool: checker duration=974.947µs
2025-05-12 16:46:43.619 TRACE txpool: checker duration=996.477µs
2025-05-12 16:46:43.629 TRACE txpool: checker duration=1.006248ms
2025-05-12 16:46:43.639 TRACE txpool: checker duration=971.238µs
2025-05-12 16:46:43.649 TRACE txpool: checker duration=961.048µs
2025-05-12 16:46:43.659 TRACE txpool: checker duration=996.367µs
2025-05-12 16:46:43.669 TRACE txpool: checker duration=943.597µs
2025-05-12 16:46:43.679 TRACE txpool: checker duration=1.012698ms
2025-05-12 16:46:43.689 TRACE txpool: checker duration=1.045588ms
2025-05-12 16:46:43.699 TRACE txpool: checker duration=876.378µs
2025-05-12 16:46:43.709 TRACE txpool: checker duration=914.378µs
2025-05-12 16:46:43.719 TRACE txpool: checker duration=975.627µs
2025-05-12 16:46:43.729 TRACE txpool: checker duration=1.053788ms
2025-05-12 16:46:43.739 TRACE txpool: checker duration=314.52µs
2025-05-12 16:46:43.749 TRACE txpool: checker duration=843.638µs
2025-05-12 16:46:43.759 TRACE txpool: checker duration=1.017858ms
2025-05-12 16:46:43.769 TRACE txpool: checker duration=983.377µs
2025-05-12 16:46:43.779 TRACE txpool: checker duration=1.151307ms
2025-05-12 16:46:43.789 TRACE txpool: checker duration=995.998µs
2025-05-12 16:46:43.799 TRACE txpool: checker duration=1.007578ms
2025-05-12 16:46:43.809 TRACE txpool: checker duration=1.018018ms
2025-05-12 16:46:43.819 TRACE txpool: checker duration=284.429µs
2025-05-12 16:46:43.829 TRACE txpool: checker duration=1.026967ms
2025-05-12 16:46:43.839 TRACE txpool: checker duration=314.16µs
2025-05-12 16:46:43.849 TRACE txpool: checker duration=813.348µs
2025-05-12 16:46:43.862 TRACE txpool: checker duration=3.059783ms
2025-05-12 16:46:45.676 TRACE txpool: checker duration=736.428µs
2025-05-12 16:46:45.971 TRACE txpool: checker duration=758.238µs
2025-05-12 16:46:45.981 TRACE txpool: checker duration=999.007µs
2025-05-12 16:46:45.991 TRACE txpool: checker duration=932.647µs
2025-05-12 16:46:46.001 TRACE txpool: checker duration=597.419µs
2025-05-12 16:46:46.011 TRACE txpool: checker duration=1.067448ms
2025-05-12 16:46:46.022 TRACE txpool: checker duration=1.185648ms
2025-05-12 16:46:46.032 TRACE txpool: checker duration=1.165088ms
2025-05-12 16:46:46.042 TRACE txpool: checker duration=845.188µs
2025-05-12 16:46:46.053 TRACE txpool: checker duration=964.308µs
2025-05-12 16:46:46.063 TRACE txpool: checker duration=879.418µs
2025-05-12 16:46:46.073 TRACE txpool: checker duration=1.065318ms
2025-05-12 16:46:46.083 TRACE txpool: checker duration=580.518µs
2025-05-12 16:46:46.093 TRACE txpool: checker duration=659.019µs
2025-05-12 16:46:46.103 TRACE txpool: checker duration=1.009837ms
2025-05-12 16:46:46.113 TRACE txpool: checker duration=925.658µs
2025-05-12 16:46:46.123 TRACE txpool: checker duration=835.498µs
2025-05-12 16:46:46.134 TRACE txpool: checker duration=525.009µs
2025-05-12 16:46:46.144 TRACE txpool: checker duration=1.137307ms
2025-05-12 16:46:46.155 TRACE txpool: checker duration=859.018µs
2025-05-12 16:46:46.165 TRACE txpool: checker duration=971.308µs
2025-05-12 16:46:46.176 TRACE txpool: checker duration=1.209377ms
2025-05-12 16:46:46.187 TRACE txpool: checker duration=1.193277ms
2025-05-12 16:46:46.197 TRACE txpool: checker duration=744.459µs
2025-05-12 16:46:46.207 TRACE txpool: checker duration=1.070058ms
2025-05-12 16:46:46.217 TRACE txpool: checker duration=1.194537ms
2025-05-12 16:46:46.227 TRACE txpool: checker duration=1.072758ms
2025-05-12 16:46:46.237 TRACE txpool: checker duration=932.728µs
2025-05-12 16:46:46.247 TRACE txpool: checker duration=1.072887ms
2025-05-12 16:46:46.257 TRACE txpool: checker duration=1.201297ms
2025-05-12 16:46:46.268 TRACE txpool: checker duration=1.071438ms
2025-05-12 16:46:46.278 TRACE txpool: checker duration=859.948µs
2025-05-12 16:46:46.288 TRACE txpool: checker duration=627.559µs
2025-05-12 16:46:46.298 TRACE txpool: checker duration=1.133628ms
2025-05-12 16:46:46.308 TRACE txpool: checker duration=1.081117ms
2025-05-12 16:46:46.318 TRACE txpool: checker duration=802.028µs
2025-05-12 16:46:46.328 TRACE txpool: checker duration=1.068457ms
2025-05-12 16:46:46.338 TRACE txpool: checker duration=1.315347ms
2025-05-12 16:46:46.348 TRACE txpool: checker duration=1.076548ms
2025-05-12 16:46:46.358 TRACE txpool: checker duration=951.858µs
2025-05-12 16:46:46.368 TRACE txpool: checker duration=1.068128ms
2025-05-12 16:46:46.378 TRACE txpool: checker duration=917.338µs
2025-05-12 16:46:46.388 TRACE txpool: checker duration=738.519µs
2025-05-12 16:46:46.398 TRACE txpool: checker duration=1.073018ms
2025-05-12 16:46:46.408 TRACE txpool: checker duration=873.948µs
2025-05-12 16:46:46.419 TRACE txpool: checker duration=1.070377ms
2025-05-12 16:46:46.430 TRACE txpool: checker duration=1.689576ms
2025-05-12 16:46:46.441 TRACE txpool: checker duration=1.068967ms
2025-05-12 16:46:46.451 TRACE txpool: checker duration=486.749µs
2025-05-12 16:46:46.461 TRACE txpool: checker duration=1.111408ms
2025-05-12 16:46:46.472 TRACE txpool: checker duration=1.078038ms
2025-05-12 16:46:46.482 TRACE txpool: checker duration=448.859µs
2025-05-12 16:46:46.493 TRACE txpool: checker duration=1.240007ms
2025-05-12 16:46:46.503 TRACE txpool: checker duration=789.828µs
2025-05-12 16:46:46.513 TRACE txpool: checker duration=1.009158ms
2025-05-12 16:46:46.523 TRACE txpool: checker duration=900.608µs
2025-05-12 16:46:46.533 TRACE txpool: checker duration=877.218µs
2025-05-12 16:46:46.544 TRACE txpool: checker duration=1.891586ms
2025-05-12 16:46:46.555 TRACE txpool: checker duration=1.069317ms
2025-05-12 16:46:46.566 TRACE txpool: checker duration=1.035878ms
2025-05-12 16:46:46.576 TRACE txpool: checker duration=1.034638ms
2025-05-12 16:46:46.586 TRACE txpool: checker duration=770.958µs
2025-05-12 16:46:46.597 TRACE txpool: checker duration=1.009428ms
2025-05-12 16:46:46.607 TRACE txpool: checker duration=676.098µs
2025-05-12 16:46:46.617 TRACE txpool: checker duration=984.007µs
2025-05-12 16:46:46.629 TRACE txpool: checker duration=1.974175ms
2025-05-12 16:46:46.639 TRACE txpool: checker duration=1.174537ms
2025-05-12 16:46:46.650 TRACE txpool: checker duration=1.267817ms
2025-05-12 16:46:46.659 TRACE txpool: checker duration=720.558µs
2025-05-12 16:46:46.669 TRACE txpool: checker duration=1.066038ms
2025-05-12 16:46:46.679 TRACE txpool: checker duration=1.118267ms
2025-05-12 16:46:46.692 TRACE txpool: checker duration=1.412157ms
2025-05-12 16:46:46.703 TRACE txpool: checker duration=1.065278ms
2025-05-12 16:46:46.713 TRACE txpool: checker duration=1.036798ms
2025-05-12 16:46:46.723 TRACE txpool: checker duration=1.157247ms
2025-05-12 16:46:46.733 TRACE txpool: checker duration=1.071348ms
2025-05-12 16:46:46.743 TRACE txpool: checker duration=1.065167ms
2025-05-12 16:46:46.753 TRACE txpool: checker duration=1.201358ms
2025-05-12 16:46:46.763 TRACE txpool: checker duration=1.585946ms
2025-05-12 16:46:46.774 TRACE txpool: checker duration=598.048µs
2025-05-12 16:46:46.786 TRACE txpool: checker duration=814.618µs
2025-05-12 16:46:46.798 TRACE txpool: checker duration=1.178797ms
2025-05-12 16:46:46.808 TRACE txpool: checker duration=666.458µs
2025-05-12 16:46:46.819 TRACE txpool: checker duration=920.737µs
2025-05-12 16:46:46.830 TRACE txpool: checker duration=1.101317ms
2025-05-12 16:46:46.840 TRACE txpool: checker duration=1.423087ms
2025-05-12 16:46:46.850 TRACE txpool: checker duration=1.177258ms
2025-05-12 16:46:46.860 TRACE txpool: checker duration=1.026948ms
2025-05-12 16:46:46.870 TRACE txpool: checker duration=1.071148ms
2025-05-12 16:46:46.880 TRACE txpool: checker duration=976.968µs
2025-05-12 16:46:46.891 TRACE txpool: checker duration=1.028017ms
2025-05-12 16:46:46.902 TRACE txpool: checker duration=1.071708ms
2025-05-12 16:46:46.913 TRACE txpool: checker duration=1.954235ms
2025-05-12 16:46:46.924 TRACE txpool: checker duration=832.488µs
2025-05-12 16:46:46.934 TRACE txpool: checker duration=639.278µs
2025-05-12 16:46:46.944 TRACE txpool: checker duration=1.067548ms
2025-05-12 16:46:46.954 TRACE txpool: checker duration=1.074247ms
2025-05-12 16:46:46.965 TRACE txpool: checker duration=1.064428ms
2025-05-12 16:46:46.976 TRACE txpool: checker duration=1.740646ms
2025-05-12 16:46:46.985 TRACE txpool: checker duration=1.202808ms
2025-05-12 16:46:46.995 TRACE txpool: checker duration=848.888µs
2025-05-12 16:46:47.005 TRACE txpool: checker duration=866.098µs
2025-05-12 16:46:47.015 TRACE txpool: checker duration=1.105947ms
2025-05-12 16:46:47.025 TRACE txpool: checker duration=1.410557ms
2025-05-12 16:46:47.035 TRACE txpool: checker duration=347.069µs
2025-05-12 16:46:47.046 TRACE txpool: checker duration=896.918µs
2025-05-12 16:46:47.056 TRACE txpool: checker duration=981.418µs
2025-05-12 16:46:47.066 TRACE txpool: checker duration=927.628µs
2025-05-12 16:46:47.077 TRACE txpool: checker duration=1.443156ms
2025-05-12 16:46:47.086 TRACE txpool: checker duration=971.217µs
2025-05-12 16:46:47.096 TRACE txpool: checker duration=1.140577ms
2025-05-12 16:46:47.106 TRACE txpool: checker duration=609.109µs
2025-05-12 16:46:47.116 TRACE txpool: checker duration=1.258807ms
2025-05-12 16:46:47.126 TRACE txpool: checker duration=1.013948ms
2025-05-12 16:46:47.136 TRACE txpool: checker duration=600.899µs
2025-05-12 16:46:47.147 TRACE txpool: checker duration=332.129µs
2025-05-12 16:46:47.159 TRACE txpool: checker duration=834.328µs
2025-05-12 16:46:47.170 TRACE txpool: checker duration=442.549µs
2025-05-12 16:46:47.180 TRACE txpool: checker duration=360.189µs
2025-05-12 16:46:47.191 TRACE txpool: checker duration=601.689µs
2025-05-12 16:46:47.203 TRACE txpool: checker duration=434.649µs
2025-05-12 16:46:47.214 TRACE txpool: checker duration=1.068498ms
2025-05-12 16:46:47.224 TRACE txpool: checker duration=578.638µs
2025-05-12 16:46:47.235 TRACE txpool: checker duration=1.513597ms
2025-05-12 16:46:47.245 TRACE txpool: checker duration=1.023297ms
2025-05-12 16:46:47.256 TRACE txpool: checker duration=1.478757ms
2025-05-12 16:46:47.266 TRACE txpool: checker duration=957.257µs
2025-05-12 16:46:47.277 TRACE txpool: checker duration=924.818µs
2025-05-12 16:46:47.287 TRACE txpool: checker duration=1.162677ms
2025-05-12 16:46:47.297 TRACE txpool: checker duration=1.070808ms
2025-05-12 16:46:47.307 TRACE txpool: checker duration=1.390657ms
2025-05-12 16:46:47.317 TRACE txpool: checker duration=776.518µs
2025-05-12 16:46:47.328 TRACE txpool: checker duration=1.089317ms
2025-05-12 16:46:47.338 TRACE txpool: checker duration=896.068µs
2025-05-12 16:46:47.348 TRACE txpool: checker duration=970.158µs
2025-05-12 16:46:47.358 TRACE txpool: checker duration=1.389987ms
2025-05-12 16:46:47.368 TRACE txpool: checker duration=657.619µs
2025-05-12 16:46:47.378 TRACE txpool: checker duration=904.308µs
2025-05-12 16:46:47.388 TRACE txpool: checker duration=832.748µs
2025-05-12 16:46:47.398 TRACE txpool: checker duration=490.359µs
2025-05-12 16:46:47.408 TRACE txpool: checker duration=744.059µs
2025-05-12 16:46:47.418 TRACE txpool: checker duration=1.083957ms
2025-05-12 16:46:47.428 TRACE txpool: checker duration=681.529µs
2025-05-12 16:46:47.438 TRACE txpool: checker duration=1.139358ms
2025-05-12 16:46:47.449 TRACE txpool: checker duration=929.848µs
2025-05-12 16:46:47.459 TRACE txpool: checker duration=1.268647ms
2025-05-12 16:46:47.471 TRACE txpool: checker duration=1.557086ms
2025-05-12 16:46:47.481 TRACE txpool: checker duration=1.082617ms
2025-05-12 16:46:47.491 TRACE txpool: checker duration=971.807µs
2025-05-12 16:46:47.501 TRACE txpool: checker duration=973.137µs
2025-05-12 16:46:47.512 TRACE txpool: checker duration=1.372137ms
2025-05-12 16:46:47.522 TRACE txpool: checker duration=699.188µs
2025-05-12 16:46:47.532 TRACE txpool: checker duration=1.281527ms
2025-05-12 16:46:47.542 TRACE txpool: checker duration=923.478µs
2025-05-12 16:46:47.552 TRACE txpool: checker duration=928.988µs
2025-05-12 16:46:47.562 TRACE txpool: checker duration=844.328µs
2025-05-12 16:46:47.572 TRACE txpool: checker duration=1.069128ms
2025-05-12 16:46:47.582 TRACE txpool: checker duration=1.069027ms
2025-05-12 16:46:47.592 TRACE txpool: checker duration=1.357337ms
2025-05-12 16:46:47.602 TRACE txpool: checker duration=865.348µs
2025-05-12 16:46:47.612 TRACE txpool: checker duration=919.438µs
2025-05-12 16:46:47.622 TRACE txpool: checker duration=884.558µs
2025-05-12 16:46:47.632 TRACE txpool: checker duration=553.028µs
2025-05-12 16:46:47.642 TRACE txpool: checker duration=1.063897ms
2025-05-12 16:46:47.652 TRACE txpool: checker duration=651.549µs
2025-05-12 16:46:47.663 TRACE txpool: checker duration=1.258867ms
2025-05-12 16:46:47.674 TRACE txpool: checker duration=1.073117ms
2025-05-12 16:46:47.684 TRACE txpool: checker duration=1.440757ms
2025-05-12 16:46:47.694 TRACE txpool: checker duration=691.108µs
2025-05-12 16:46:47.704 TRACE txpool: checker duration=1.072038ms
2025-05-12 16:46:47.714 TRACE txpool: checker duration=664.928µs
2025-05-12 16:46:47.724 TRACE txpool: checker duration=1.078828ms
2025-05-12 16:46:47.735 TRACE txpool: checker duration=682.349µs
2025-05-12 16:46:47.745 TRACE txpool: checker duration=250.47µs
2025-05-12 16:46:47.756 TRACE txpool: checker duration=1.079127ms
2025-05-12 16:46:47.770 TRACE txpool: checker duration=1.071888ms
2025-05-12 16:46:47.780 TRACE txpool: checker duration=1.266397ms
2025-05-12 16:46:47.790 TRACE txpool: checker duration=912.048µs
2025-05-12 16:46:47.800 TRACE txpool: checker duration=1.026067ms
2025-05-12 16:46:47.810 TRACE txpool: checker duration=1.170217ms
2025-05-12 16:46:47.820 TRACE txpool: checker duration=817.438µs
2025-05-12 16:46:47.830 TRACE txpool: checker duration=1.039238ms
2025-05-12 16:46:47.840 TRACE txpool: checker duration=833.228µs
2025-05-12 16:46:47.850 TRACE txpool: checker duration=1.044958ms
2025-05-12 16:46:47.860 TRACE txpool: checker duration=1.071048ms
2025-05-12 16:46:47.871 TRACE txpool: checker duration=1.799796ms
2025-05-12 16:46:47.883 TRACE txpool: checker duration=1.448757ms
2025-05-12 16:46:47.892 TRACE txpool: checker duration=1.071497ms
2025-05-12 16:46:47.902 TRACE txpool: checker duration=1.104258ms
2025-05-12 16:46:47.912 TRACE txpool: checker duration=954.788µs
2025-05-12 16:46:47.922 TRACE txpool: checker duration=957.888µs
2025-05-12 16:46:47.932 TRACE txpool: checker duration=1.470937ms
2025-05-12 16:46:47.943 TRACE txpool: checker duration=1.470407ms
2025-05-12 16:46:47.953 TRACE txpool: checker duration=1.077607ms
2025-05-12 16:46:47.963 TRACE txpool: checker duration=1.044157ms
2025-05-12 16:46:47.973 TRACE txpool: checker duration=1.512597ms
2025-05-12 16:46:47.984 TRACE txpool: checker duration=1.073677ms
2025-05-12 16:46:47.994 TRACE txpool: checker duration=359.369µs
2025-05-12 16:46:48.005 TRACE txpool: checker duration=1.898516ms
2025-05-12 16:46:48.015 TRACE txpool: checker duration=1.068638ms
2025-05-12 16:46:48.025 TRACE txpool: checker duration=133.08µs
2025-05-12 16:46:48.036 TRACE txpool: checker duration=1.511457ms
2025-05-12 16:46:48.045 TRACE txpool: checker duration=1.035498ms
2025-05-12 16:46:48.056 TRACE txpool: checker duration=1.269097ms
2025-05-12 16:46:48.066 TRACE txpool: checker duration=649.568µs
2025-05-12 16:46:48.078 TRACE txpool: checker duration=1.475297ms
2025-05-12 16:46:48.087 TRACE txpool: checker duration=875.408µs
2025-05-12 16:46:48.097 TRACE txpool: checker duration=1.314217ms
2025-05-12 16:46:48.107 TRACE txpool: checker duration=877.038µs
2025-05-12 16:46:48.118 TRACE txpool: checker duration=635.189µs
2025-05-12 16:46:48.128 TRACE txpool: checker duration=1.058317ms
2025-05-12 16:46:48.140 TRACE txpool: checker duration=1.081268ms
2025-05-12 16:46:48.151 TRACE txpool: checker duration=848.708µs
2025-05-12 16:46:48.162 TRACE txpool: checker duration=1.670737ms
2025-05-12 16:46:48.173 TRACE txpool: checker duration=1.049128ms
2025-05-12 16:46:48.183 TRACE txpool: checker duration=1.596336ms
2025-05-12 16:46:48.193 TRACE txpool: checker duration=594.088µs
2025-05-12 16:46:48.203 TRACE txpool: checker duration=1.065008ms
2025-05-12 16:46:48.213 TRACE txpool: checker duration=1.239217ms
2025-05-12 16:46:48.223 TRACE txpool: checker duration=640.599µs
2025-05-12 16:46:48.233 TRACE txpool: checker duration=1.474366ms
2025-05-12 16:46:48.243 TRACE txpool: checker duration=1.046707ms
2025-05-12 16:46:48.253 TRACE txpool: checker duration=1.252617ms
2025-05-12 16:46:48.265 TRACE txpool: checker duration=1.268647ms
2025-05-12 16:46:48.274 TRACE txpool: checker duration=1.221877ms
2025-05-12 16:46:48.284 TRACE txpool: checker duration=606.828µs
2025-05-12 16:46:48.294 TRACE txpool: checker duration=846.628µs
2025-05-12 16:46:48.304 TRACE txpool: checker duration=1.268337ms
2025-05-12 16:46:48.315 TRACE txpool: checker duration=863.648µs
2025-05-12 16:46:48.325 TRACE txpool: checker duration=1.018287ms
2025-05-12 16:46:48.335 TRACE txpool: checker duration=1.014998ms
2025-05-12 16:46:48.345 TRACE txpool: checker duration=1.460277ms
2025-05-12 16:46:48.355 TRACE txpool: checker duration=664.039µs
2025-05-12 16:46:48.365 TRACE txpool: checker duration=1.283607ms
2025-05-12 16:46:48.375 TRACE txpool: checker duration=617.748µs
2025-05-12 16:46:48.385 TRACE txpool: checker duration=1.252897ms
2025-05-12 16:46:48.397 TRACE txpool: checker duration=1.933156ms
2025-05-12 16:46:48.407 TRACE txpool: checker duration=1.252177ms
2025-05-12 16:46:48.417 TRACE txpool: checker duration=856.018µs
2025-05-12 16:46:48.427 TRACE txpool: checker duration=1.074407ms
2025-05-12 16:46:48.437 TRACE txpool: checker duration=1.074848ms
2025-05-12 16:46:48.447 TRACE txpool: checker duration=1.460367ms
2025-05-12 16:46:48.457 TRACE txpool: checker duration=733.598µs
2025-05-12 16:46:48.467 TRACE txpool: checker duration=1.092807ms
2025-05-12 16:46:48.477 TRACE txpool: checker duration=1.068117ms
2025-05-12 16:46:48.488 TRACE txpool: checker duration=1.451937ms
2025-05-12 16:46:48.498 TRACE txpool: checker duration=1.226167ms
2025-05-12 16:46:48.509 TRACE txpool: checker duration=1.460447ms
2025-05-12 16:46:48.519 TRACE txpool: checker duration=1.009508ms
2025-05-12 16:46:48.529 TRACE txpool: checker duration=827.108µs
2025-05-12 16:46:48.540 TRACE txpool: checker duration=1.070958ms
2025-05-12 16:46:48.550 TRACE txpool: checker duration=593.169µs
2025-05-12 16:46:48.561 TRACE txpool: checker duration=577.069µs
2025-05-12 16:46:48.571 TRACE txpool: checker duration=826.328µs
2025-05-12 16:46:48.581 TRACE txpool: checker duration=1.245427ms
2025-05-12 16:46:48.591 TRACE txpool: checker duration=1.491997ms
2025-05-12 16:46:48.601 TRACE txpool: checker duration=1.068717ms
2025-05-12 16:46:48.611 TRACE txpool: checker duration=403.469µs
2025-05-12 16:46:48.623 TRACE txpool: checker duration=1.277917ms
2025-05-12 16:46:48.633 TRACE txpool: checker duration=1.022017ms
2025-05-12 16:46:48.643 TRACE txpool: checker duration=1.068207ms
2025-05-12 16:46:48.654 TRACE txpool: checker duration=975.378µs
2025-05-12 16:46:48.665 TRACE txpool: checker duration=1.899796ms
2025-05-12 16:46:48.675 TRACE txpool: checker duration=853.218µs
2025-05-12 16:46:48.685 TRACE txpool: checker duration=1.036808ms
2025-05-12 16:46:48.695 TRACE txpool: checker duration=1.245457ms
2025-05-12 16:46:48.705 TRACE txpool: checker duration=406.209µs
2025-05-12 16:46:48.717 TRACE txpool: checker duration=854.278µs
2025-05-12 16:46:48.728 TRACE txpool: checker duration=1.076237ms
2025-05-12 16:46:48.739 TRACE txpool: checker duration=1.072698ms
2025-05-12 16:46:48.749 TRACE txpool: checker duration=1.040878ms
2025-05-12 16:46:48.759 TRACE txpool: checker duration=828.048µs
2025-05-12 16:46:48.769 TRACE txpool: checker duration=560.268µs
2025-05-12 16:46:48.779 TRACE txpool: checker duration=1.071648ms
2025-05-12 16:46:48.789 TRACE txpool: checker duration=1.033837ms
2025-05-12 16:46:48.799 TRACE txpool: checker duration=1.070717ms
2025-05-12 16:46:48.809 TRACE txpool: checker duration=1.241117ms
2025-05-12 16:46:48.820 TRACE txpool: checker duration=1.067888ms
2025-05-12 16:46:48.830 TRACE txpool: checker duration=1.293537ms
2025-05-12 16:46:48.840 TRACE txpool: checker duration=1.249527ms
2025-05-12 16:46:48.850 TRACE txpool: checker duration=1.049107ms
2025-05-12 16:46:48.860 TRACE txpool: checker duration=628.999µs
2025-05-12 16:46:48.870 TRACE txpool: checker duration=1.500077ms
2025-05-12 16:46:48.881 TRACE txpool: checker duration=1.051638ms
2025-05-12 16:46:48.891 TRACE txpool: checker duration=1.082768ms
2025-05-12 16:46:48.901 TRACE txpool: checker duration=858.918µs
2025-05-12 16:46:48.911 TRACE txpool: checker duration=1.517436ms
2025-05-12 16:46:48.921 TRACE txpool: checker duration=1.398947ms
2025-05-12 16:46:48.933 TRACE txpool: checker duration=1.030178ms
2025-05-12 16:46:48.943 TRACE txpool: checker duration=576.229µs
2025-05-12 16:46:48.954 TRACE txpool: checker duration=1.472857ms
2025-05-12 16:46:48.963 TRACE txpool: checker duration=1.066967ms
2025-05-12 16:46:48.973 TRACE txpool: checker duration=831.988µs
2025-05-12 16:46:48.983 TRACE txpool: checker duration=1.070058ms
2025-05-12 16:46:48.995 TRACE txpool: checker duration=1.069277ms
2025-05-12 16:46:49.006 TRACE txpool: checker duration=1.001948ms
2025-05-12 16:46:49.016 TRACE txpool: checker duration=1.069378ms
2025-05-12 16:46:49.027 TRACE txpool: checker duration=828.919µs
2025-05-12 16:46:49.037 TRACE txpool: checker duration=1.262827ms
2025-05-12 16:46:49.047 TRACE txpool: checker duration=876.428µs
2025-05-12 16:46:49.057 TRACE txpool: checker duration=836.508µs
2025-05-12 16:46:49.067 TRACE txpool: checker duration=1.067437ms
2025-05-12 16:46:49.077 TRACE txpool: checker duration=1.240277ms
2025-05-12 16:46:49.088 TRACE txpool: checker duration=1.283947ms
2025-05-12 16:46:49.098 TRACE txpool: checker duration=1.071508ms
2025-05-12 16:46:49.108 TRACE txpool: checker duration=603.869µs
2025-05-12 16:46:49.119 TRACE txpool: checker duration=1.974055ms
2025-05-12 16:46:49.130 TRACE txpool: checker duration=841.208µs
2025-05-12 16:46:49.140 TRACE txpool: checker duration=1.271387ms
2025-05-12 16:46:49.150 TRACE txpool: checker duration=833.548µs
2025-05-12 16:46:49.160 TRACE txpool: checker duration=1.066107ms
2025-05-12 16:46:49.170 TRACE txpool: checker duration=1.253887ms
2025-05-12 16:46:49.180 TRACE txpool: checker duration=1.053398ms
2025-05-12 16:46:49.191 TRACE txpool: checker duration=1.285997ms
2025-05-12 16:46:49.201 TRACE txpool: checker duration=1.254777ms
2025-05-12 16:46:49.211 TRACE txpool: checker duration=845.868µs
2025-05-12 16:46:49.221 TRACE txpool: checker duration=1.051168ms
2025-05-12 16:46:49.232 TRACE txpool: checker duration=1.006338ms
2025-05-12 16:46:49.242 TRACE txpool: checker duration=881.198µs
2025-05-12 16:46:49.252 TRACE txpool: checker duration=1.276667ms
2025-05-12 16:46:49.264 TRACE txpool: checker duration=851.128µs
2025-05-12 16:46:49.274 TRACE txpool: checker duration=894.838µs
2025-05-12 16:46:49.284 TRACE txpool: checker duration=1.282877ms
2025-05-12 16:46:49.294 TRACE txpool: checker duration=874.168µs
2025-05-12 16:46:49.304 TRACE txpool: checker duration=883.268µs
2025-05-12 16:46:49.315 TRACE txpool: checker duration=1.069438ms
2025-05-12 16:46:49.325 TRACE txpool: checker duration=1.071787ms
2025-05-12 16:46:49.336 TRACE txpool: checker duration=432.129µs
2025-05-12 16:46:49.347 TRACE txpool: checker duration=981.017µs
2025-05-12 16:46:49.358 TRACE txpool: checker duration=1.643066ms
2025-05-12 16:46:49.369 TRACE txpool: checker duration=1.657636ms
2025-05-12 16:46:49.380 TRACE txpool: checker duration=1.281737ms
2025-05-12 16:46:49.392 TRACE txpool: checker duration=1.932175ms
2025-05-12 16:46:49.403 TRACE txpool: checker duration=1.066217ms
2025-05-12 16:46:49.413 TRACE txpool: checker duration=1.034548ms
2025-05-12 16:46:49.423 TRACE txpool: checker duration=1.302857ms
2025-05-12 16:46:49.433 TRACE txpool: checker duration=634.078µs
2025-05-12 16:46:49.443 TRACE txpool: checker duration=1.260467ms
2025-05-12 16:46:49.454 TRACE txpool: checker duration=1.073007ms
2025-05-12 16:46:49.463 TRACE txpool: checker duration=1.066178ms
2025-05-12 16:46:49.473 TRACE txpool: checker duration=1.079678ms
2025-05-12 16:46:49.483 TRACE txpool: checker duration=876.508µs
2025-05-12 16:46:49.493 TRACE txpool: checker duration=602.679µs
2025-05-12 16:46:49.503 TRACE txpool: checker duration=1.085788ms
2025-05-12 16:46:49.513 TRACE txpool: checker duration=629.329µs
2025-05-12 16:46:49.523 TRACE txpool: checker duration=1.030167ms
2025-05-12 16:46:49.533 TRACE txpool: checker duration=850.808µs
2025-05-12 16:46:49.543 TRACE txpool: checker duration=1.054438ms
2025-05-12 16:46:49.553 TRACE txpool: checker duration=518.599µs
2025-05-12 16:46:49.563 TRACE txpool: checker duration=706.658µs
2025-05-12 16:46:49.573 TRACE txpool: checker duration=827.208µs
2025-05-12 16:46:49.583 TRACE txpool: checker duration=1.063798ms
2025-05-12 16:46:49.593 TRACE txpool: checker duration=1.034848ms
2025-05-12 16:46:49.603 TRACE txpool: checker duration=594.819µs
2025-05-12 16:46:49.613 TRACE txpool: checker duration=1.145118ms
2025-05-12 16:46:49.623 TRACE txpool: checker duration=807.028µs
2025-05-12 16:46:49.633 TRACE txpool: checker duration=414.509µs
2025-05-12 16:46:49.644 TRACE txpool: checker duration=1.066668ms
2025-05-12 16:46:49.654 TRACE txpool: checker duration=1.069068ms
2025-05-12 16:46:49.664 TRACE txpool: checker duration=1.067787ms
2025-05-12 16:46:49.674 TRACE txpool: checker duration=1.073477ms
2025-05-12 16:46:49.684 TRACE txpool: checker duration=1.044137ms
2025-05-12 16:46:49.694 TRACE txpool: checker duration=1.068778ms
2025-05-12 16:46:49.705 TRACE txpool: checker duration=1.130678ms
2025-05-12 16:46:49.715 TRACE txpool: checker duration=609.679µs
2025-05-12 16:46:49.725 TRACE txpool: checker duration=1.286157ms
2025-05-12 16:46:49.735 TRACE txpool: checker duration=817.148µs
2025-05-12 16:46:49.745 TRACE txpool: checker duration=1.346237ms
2025-05-12 16:46:49.755 TRACE txpool: checker duration=1.069778ms
2025-05-12 16:46:49.765 TRACE txpool: checker duration=575.219µs
2025-05-12 16:46:49.775 TRACE txpool: checker duration=1.481537ms
2025-05-12 16:46:49.785 TRACE txpool: checker duration=1.264847ms
2025-05-12 16:46:49.795 TRACE txpool: checker duration=884.678µs
2025-05-12 16:46:49.805 TRACE txpool: checker duration=1.076737ms
2025-05-12 16:46:49.815 TRACE txpool: checker duration=1.225497ms
2025-05-12 16:46:49.825 TRACE txpool: checker duration=869.588µs
2025-05-12 16:46:49.836 TRACE txpool: checker duration=1.074308ms
2025-05-12 16:46:49.846 TRACE txpool: checker duration=1.063418ms
2025-05-12 16:46:49.856 TRACE txpool: checker duration=1.223007ms
2025-05-12 16:46:49.866 TRACE txpool: checker duration=869.438µs
2025-05-12 16:46:49.876 TRACE txpool: checker duration=1.066657ms
2025-05-12 16:46:49.886 TRACE txpool: checker duration=991.328µs
2025-05-12 16:46:49.897 TRACE txpool: checker duration=1.822216ms
2025-05-12 16:46:49.906 TRACE txpool: checker duration=1.173408ms
2025-05-12 16:46:49.916 TRACE txpool: checker duration=1.070768ms
2025-05-12 16:46:49.926 TRACE txpool: checker duration=1.070147ms
2025-05-12 16:46:49.937 TRACE txpool: checker duration=1.443517ms
2025-05-12 16:46:49.946 TRACE txpool: checker duration=1.070918ms
2025-05-12 16:46:49.956 TRACE txpool: checker duration=1.070257ms
2025-05-12 16:46:49.966 TRACE txpool: checker duration=1.060698ms
2025-05-12 16:46:49.977 TRACE txpool: checker duration=975.738µs
2025-05-12 16:46:49.987 TRACE txpool: checker duration=1.244837ms
2025-05-12 16:46:49.997 TRACE txpool: checker duration=1.007458ms
2025-05-12 16:46:50.007 TRACE txpool: checker duration=866.088µs
2025-05-12 16:46:50.018 TRACE txpool: checker duration=794.218µs
2025-05-12 16:46:50.028 TRACE txpool: checker duration=1.039658ms
2025-05-12 16:46:50.038 TRACE txpool: checker duration=1.238118ms
2025-05-12 16:46:50.048 TRACE txpool: checker duration=704.978µs
2025-05-12 16:46:50.058 TRACE txpool: checker duration=958.058µs
2025-05-12 16:46:50.068 TRACE txpool: checker duration=1.066407ms
2025-05-12 16:46:50.078 TRACE txpool: checker duration=1.079567ms
2025-05-12 16:46:50.088 TRACE txpool: checker duration=797.309µs
2025-05-12 16:46:50.098 TRACE txpool: checker duration=671.088µs
2025-05-12 16:46:50.108 TRACE txpool: checker duration=1.342966ms
2025-05-12 16:46:50.118 TRACE txpool: checker duration=1.070408ms
2025-05-12 16:46:50.128 TRACE txpool: checker duration=1.261907ms
2025-05-12 16:46:50.138 TRACE txpool: checker duration=1.260837ms
2025-05-12 16:46:50.150 TRACE txpool: checker duration=983.648µs
2025-05-12 16:46:50.160 TRACE txpool: checker duration=626.819µs
2025-05-12 16:46:50.170 TRACE txpool: checker duration=865.088µs
2025-05-12 16:46:50.180 TRACE txpool: checker duration=1.070328ms
2025-05-12 16:46:50.190 TRACE txpool: checker duration=1.292707ms
2025-05-12 16:46:50.200 TRACE txpool: checker duration=1.059458ms
2025-05-12 16:46:50.210 TRACE txpool: checker duration=571.739µs
2025-05-12 16:46:50.220 TRACE txpool: checker duration=828.578µs
2025-05-12 16:46:50.230 TRACE txpool: checker duration=591.289µs
2025-05-12 16:46:50.240 TRACE txpool: checker duration=773.338µs
2025-05-12 16:46:50.250 TRACE txpool: checker duration=1.047138ms
2025-05-12 16:46:50.260 TRACE txpool: checker duration=939.698µs
2025-05-12 16:46:50.271 TRACE txpool: checker duration=1.292537ms
2025-05-12 16:46:50.281 TRACE txpool: checker duration=1.198167ms
2025-05-12 16:46:50.292 TRACE txpool: checker duration=1.077437ms
2025-05-12 16:46:50.302 TRACE txpool: checker duration=1.371457ms
2025-05-12 16:46:50.312 TRACE txpool: checker duration=1.071788ms
2025-05-12 16:46:50.323 TRACE txpool: checker duration=1.248078ms
2025-05-12 16:46:50.333 TRACE txpool: checker duration=883.378µs
2025-05-12 16:46:50.343 TRACE txpool: checker duration=1.300267ms
2025-05-12 16:46:50.354 TRACE txpool: checker duration=1.072938ms
2025-05-12 16:46:50.364 TRACE txpool: checker duration=1.078238ms
2025-05-12 16:46:50.374 TRACE txpool: checker duration=1.066358ms
2025-05-12 16:46:50.384 TRACE txpool: checker duration=849.678µs
2025-05-12 16:46:50.394 TRACE txpool: checker duration=809.208µs
2025-05-12 16:46:50.404 TRACE txpool: checker duration=861.638µs
2025-05-12 16:46:50.414 TRACE txpool: checker duration=1.366807ms
2025-05-12 16:46:50.424 TRACE txpool: checker duration=862.118µs
2025-05-12 16:46:50.434 TRACE txpool: checker duration=208.609µs
2025-05-12 16:46:50.444 TRACE txpool: checker duration=1.070048ms
2025-05-12 16:46:50.454 TRACE txpool: checker duration=889.138µs
2025-05-12 16:46:50.464 TRACE txpool: checker duration=775.218µs
2025-05-12 16:46:50.474 TRACE txpool: checker duration=1.236897ms
2025-05-12 16:46:50.484 TRACE txpool: checker duration=839.038µs
2025-05-12 16:46:50.495 TRACE txpool: checker duration=1.694466ms
2025-05-12 16:46:50.504 TRACE txpool: checker duration=540.899µs
2025-05-12 16:46:50.514 TRACE txpool: checker duration=864.058µs
2025-05-12 16:46:50.525 TRACE txpool: checker duration=902.328µs
2025-05-12 16:46:50.536 TRACE txpool: checker duration=668.129µs
2025-05-12 16:46:50.546 TRACE txpool: checker duration=873.528µs
2025-05-12 16:46:50.556 TRACE txpool: checker duration=851.688µs
2025-05-12 16:46:50.566 TRACE txpool: checker duration=853.788µs
2025-05-12 16:46:50.576 TRACE txpool: checker duration=1.067437ms
2025-05-12 16:46:50.586 TRACE txpool: checker duration=1.260647ms
2025-05-12 16:46:50.596 TRACE txpool: checker duration=1.243507ms
2025-05-12 16:46:50.606 TRACE txpool: checker duration=901.218µs
2025-05-12 16:46:50.616 TRACE txpool: checker duration=1.069428ms
2025-05-12 16:46:50.626 TRACE txpool: checker duration=845.188µs
2025-05-12 16:46:50.636 TRACE txpool: checker duration=1.070147ms
2025-05-12 16:46:50.647 TRACE txpool: checker duration=822.398µs
2025-05-12 16:46:50.657 TRACE txpool: checker duration=881.848µs
2025-05-12 16:46:50.667 TRACE txpool: checker duration=1.014768ms
2025-05-12 16:46:50.677 TRACE txpool: checker duration=1.234557ms
2025-05-12 16:46:50.687 TRACE txpool: checker duration=815.388µs
2025-05-12 16:46:50.697 TRACE txpool: checker duration=1.067757ms
2025-05-12 16:46:50.707 TRACE txpool: checker duration=1.068417ms
2025-05-12 16:46:50.717 TRACE txpool: checker duration=830.568µs
2025-05-12 16:46:50.728 TRACE txpool: checker duration=817.228µs
2025-05-12 16:46:50.738 TRACE txpool: checker duration=1.054807ms
2025-05-12 16:46:50.748 TRACE txpool: checker duration=555.869µs
2025-05-12 16:46:50.759 TRACE txpool: checker duration=1.063807ms
2025-05-12 16:46:50.769 TRACE txpool: checker duration=1.071637ms
2025-05-12 16:46:50.779 TRACE txpool: checker duration=1.120548ms
2025-05-12 16:46:50.789 TRACE txpool: checker duration=1.204337ms
2025-05-12 16:46:50.799 TRACE txpool: checker duration=734.029µs
2025-05-12 16:46:50.810 TRACE txpool: checker duration=907.038µs
2025-05-12 16:46:50.821 TRACE txpool: checker duration=1.071188ms
2025-05-12 16:46:50.832 TRACE txpool: checker duration=778.978µs
2025-05-12 16:46:50.842 TRACE txpool: checker duration=1.310717ms
2025-05-12 16:46:50.852 TRACE txpool: checker duration=1.017728ms
2025-05-12 16:46:50.862 TRACE txpool: checker duration=1.068468ms
2025-05-12 16:46:50.872 TRACE txpool: checker duration=776.818µs
2025-05-12 16:46:50.883 TRACE txpool: checker duration=1.441076ms
2025-05-12 16:46:50.892 TRACE txpool: checker duration=1.065388ms
2025-05-12 16:46:50.902 TRACE txpool: checker duration=761.089µs
2025-05-12 16:46:50.912 TRACE txpool: checker duration=906.578µs
2025-05-12 16:46:50.922 TRACE txpool: checker duration=1.193278ms
2025-05-12 16:46:50.932 TRACE txpool: checker duration=812.218µs
2025-05-12 16:46:50.942 TRACE txpool: checker duration=916.338µs
2025-05-12 16:46:50.952 TRACE txpool: checker duration=1.166117ms
2025-05-12 16:46:50.962 TRACE txpool: checker duration=758.419µs
2025-05-12 16:46:50.972 TRACE txpool: checker duration=1.068327ms
2025-05-12 16:46:50.983 TRACE txpool: checker duration=1.166917ms
2025-05-12 16:46:50.993 TRACE txpool: checker duration=778.528µs
2025-05-12 16:46:51.003 TRACE txpool: checker duration=1.160698ms
2025-05-12 16:46:51.013 TRACE txpool: checker duration=1.134278ms
2025-05-12 16:46:51.026 TRACE txpool: checker duration=1.378397ms
2025-05-12 16:46:51.036 TRACE txpool: checker duration=714.938µs
2025-05-12 16:46:51.046 TRACE txpool: checker duration=886.568µs
2025-05-12 16:46:51.056 TRACE txpool: checker duration=1.063488ms
2025-05-12 16:46:51.066 TRACE txpool: checker duration=842.368µs
2025-05-12 16:46:51.076 TRACE txpool: checker duration=1.064498ms
2025-05-12 16:46:51.086 TRACE txpool: checker duration=792.109µs
2025-05-12 16:46:51.096 TRACE txpool: checker duration=742.468µs
2025-05-12 16:46:51.106 TRACE txpool: checker duration=1.065028ms
2025-05-12 16:46:51.116 TRACE txpool: checker duration=1.195207ms
2025-05-12 16:46:51.126 TRACE txpool: checker duration=847.038µs
2025-05-12 16:46:51.137 TRACE txpool: checker duration=1.178087ms
2025-05-12 16:46:51.147 TRACE txpool: checker duration=1.201517ms
2025-05-12 16:46:51.157 TRACE txpool: checker duration=1.124997ms
2025-05-12 16:46:51.167 TRACE txpool: checker duration=734.038µs
2025-05-12 16:46:51.177 TRACE txpool: checker duration=454.959µs
2025-05-12 16:46:51.188 TRACE txpool: checker duration=1.074687ms
2025-05-12 16:46:51.198 TRACE txpool: checker duration=977.918µs
2025-05-12 16:46:51.208 TRACE txpool: checker duration=950.118µs
2025-05-12 16:46:51.219 TRACE txpool: checker duration=1.074697ms
2025-05-12 16:46:51.229 TRACE txpool: checker duration=1.066897ms
2025-05-12 16:46:51.239 TRACE txpool: checker duration=1.327517ms
2025-05-12 16:46:51.250 TRACE txpool: checker duration=657.488µs
2025-05-12 16:46:51.260 TRACE txpool: checker duration=1.144907ms
2025-05-12 16:46:51.270 TRACE txpool: checker duration=1.082798ms
2025-05-12 16:46:51.280 TRACE txpool: checker duration=836.628µs
2025-05-12 16:46:51.291 TRACE txpool: checker duration=909.578µs
2025-05-12 16:46:51.301 TRACE txpool: checker duration=472.469µs
2025-05-12 16:46:51.311 TRACE txpool: checker duration=1.129077ms
2025-05-12 16:46:51.321 TRACE txpool: checker duration=629.618µs
2025-05-12 16:46:51.332 TRACE txpool: checker duration=1.073938ms
2025-05-12 16:46:51.343 TRACE txpool: checker duration=575.509µs
2025-05-12 16:46:51.354 TRACE txpool: checker duration=940.818µs
2025-05-12 16:46:51.364 TRACE txpool: checker duration=1.182627ms
2025-05-12 16:46:51.374 TRACE txpool: checker duration=1.357477ms
2025-05-12 16:46:51.385 TRACE txpool: checker duration=1.547306ms
2025-05-12 16:46:51.395 TRACE txpool: checker duration=1.002968ms
2025-05-12 16:46:51.407 TRACE txpool: checker duration=1.118497ms
2025-05-12 16:46:51.418 TRACE txpool: checker duration=1.194287ms
2025-05-12 16:46:51.428 TRACE txpool: checker duration=906.368µs
2025-05-12 16:46:51.438 TRACE txpool: checker duration=1.187027ms
2025-05-12 16:46:51.448 TRACE txpool: checker duration=814.118µs
2025-05-12 16:46:51.460 TRACE txpool: checker duration=2.073795ms
2025-05-12 16:46:51.470 TRACE txpool: checker duration=1.319377ms
2025-05-12 16:46:51.480 TRACE txpool: checker duration=998.558µs
2025-05-12 16:46:51.518 TRACE txpool: checker duration=1.079927ms
2025-05-12 16:46:51.575 TRACE txpool: checker duration=1.042048ms
2025-05-12 16:46:51.634 TRACE txpool: checker duration=256.919µs
2025-05-12 16:46:51.695 TRACE txpool: checker duration=1.080848ms
2025-05-12 16:46:51.737 TRACE txpool: checker duration=1.101898ms
2025-05-12 16:46:51.803 TRACE txpool: checker duration=1.025148ms
2025-05-12 16:46:51.862 TRACE txpool: checker duration=1.067837ms
2025-05-12 16:46:51.912 TRACE txpool: checker duration=1.384147ms
2025-05-12 16:46:51.980 TRACE txpool: checker duration=141.6µs
2025-05-12 16:46:52.043 TRACE txpool: checker duration=931.178µs
2025-05-12 16:46:52.053 TRACE txpool: checker duration=859.858µs
2025-05-12 16:46:52.092 TRACE txpool: checker duration=1.033797ms
2025-05-12 16:46:52.102 TRACE txpool: checker duration=1.008838ms
2025-05-12 16:46:52.112 TRACE txpool: checker duration=899.308µs
2025-05-12 16:46:52.122 TRACE txpool: checker duration=686.519µs
2025-05-12 16:46:52.132 TRACE txpool: checker duration=1.071797ms
2025-05-12 16:46:52.142 TRACE txpool: checker duration=1.070187ms
2025-05-12 16:46:52.152 TRACE txpool: checker duration=1.065407ms
2025-05-12 16:46:52.162 TRACE txpool: checker duration=1.050828ms
2025-05-12 16:46:52.172 TRACE txpool: checker duration=1.065598ms
2025-05-12 16:46:52.182 TRACE txpool: checker duration=889.538µs
2025-05-12 16:46:52.192 TRACE txpool: checker duration=1.010517ms
2025-05-12 16:46:52.202 TRACE txpool: checker duration=1.037458ms
2025-05-12 16:46:52.212 TRACE txpool: checker duration=1.032137ms
2025-05-12 16:46:52.222 TRACE txpool: checker duration=1.202958ms
2025-05-12 16:46:52.232 TRACE txpool: checker duration=1.011318ms
2025-05-12 16:46:52.242 TRACE txpool: checker duration=1.261177ms
2025-05-12 16:46:52.252 TRACE txpool: checker duration=686.489µs
2025-05-12 16:46:52.262 TRACE txpool: checker duration=1.067708ms
2025-05-12 16:46:52.272 TRACE txpool: checker duration=1.067868ms
2025-05-12 16:46:52.283 TRACE txpool: checker duration=1.033348ms
2025-05-12 16:46:52.293 TRACE txpool: checker duration=1.011468ms
2025-05-12 16:46:52.303 TRACE txpool: checker duration=579.159µs
2025-05-12 16:46:52.313 TRACE txpool: checker duration=616.799µs
2025-05-12 16:46:52.323 TRACE txpool: checker duration=848.148µs
2025-05-12 16:46:52.333 TRACE txpool: checker duration=1.069057ms
2025-05-12 16:46:52.343 TRACE txpool: checker duration=1.065238ms
2025-05-12 16:46:52.353 TRACE txpool: checker duration=993.688µs
2025-05-12 16:46:52.363 TRACE txpool: checker duration=596.289µs
2025-05-12 16:46:52.374 TRACE txpool: checker duration=1.075967ms
2025-05-12 16:46:52.383 TRACE txpool: checker duration=997.818µs
2025-05-12 16:46:52.393 TRACE txpool: checker duration=982.328µs
2025-05-12 16:46:52.403 TRACE txpool: checker duration=1.066437ms
2025-05-12 16:46:52.413 TRACE txpool: checker duration=1.067337ms
2025-05-12 16:46:52.423 TRACE txpool: checker duration=832.578µs
2025-05-12 16:46:52.433 TRACE txpool: checker duration=1.070987ms
2025-05-12 16:46:52.443 TRACE txpool: checker duration=1.313127ms
2025-05-12 16:46:52.453 TRACE txpool: checker duration=815.168µs
2025-05-12 16:46:52.464 TRACE txpool: checker duration=1.147938ms
2025-05-12 16:46:52.474 TRACE txpool: checker duration=1.074268ms
2025-05-12 16:46:52.484 TRACE txpool: checker duration=1.027697ms
2025-05-12 16:46:52.494 TRACE txpool: checker duration=754.729µs
2025-05-12 16:46:52.504 TRACE txpool: checker duration=1.067538ms
2025-05-12 16:46:52.514 TRACE txpool: checker duration=687.889µs
2025-05-12 16:46:52.524 TRACE txpool: checker duration=1.212837ms
2025-05-12 16:46:52.534 TRACE txpool: checker duration=1.020978ms
2025-05-12 16:46:52.544 TRACE txpool: checker duration=885.898µs
2025-05-12 16:46:52.554 TRACE txpool: checker duration=1.036058ms
2025-05-12 16:46:52.565 TRACE txpool: checker duration=1.068678ms
2025-05-12 16:46:52.575 TRACE txpool: checker duration=1.055028ms
2025-05-12 16:46:52.585 TRACE txpool: checker duration=1.074408ms
2025-05-12 16:46:52.595 TRACE txpool: checker duration=1.064148ms
2025-05-12 16:46:52.605 TRACE txpool: checker duration=852.118µs
2025-05-12 16:46:52.615 TRACE txpool: checker duration=238.85µs
2025-05-12 16:46:52.625 TRACE txpool: checker duration=1.066798ms
2025-05-12 16:46:52.636 TRACE txpool: checker duration=1.557487ms
2025-05-12 16:46:52.645 TRACE txpool: checker duration=1.071358ms
2025-05-12 16:46:52.656 TRACE txpool: checker duration=955.058µs
2025-05-12 16:46:52.667 TRACE txpool: checker duration=958.568µs
2025-05-12 16:46:52.677 TRACE txpool: checker duration=743.538µs
2025-05-12 16:46:52.688 TRACE txpool: checker duration=1.066417ms
2025-05-12 16:46:52.698 TRACE txpool: checker duration=893.877µs
2025-05-12 16:46:52.708 TRACE txpool: checker duration=1.121558ms
2025-05-12 16:46:52.718 TRACE txpool: checker duration=869.658µs
2025-05-12 16:46:52.729 TRACE txpool: checker duration=1.064398ms
2025-05-12 16:46:52.740 TRACE txpool: checker duration=689.758µs
2025-05-12 16:46:52.750 TRACE txpool: checker duration=1.237927ms
2025-05-12 16:46:52.760 TRACE txpool: checker duration=958.838µs
2025-05-12 16:46:52.770 TRACE txpool: checker duration=736.269µs
2025-05-12 16:46:52.780 TRACE txpool: checker duration=776.708µs
2025-05-12 16:46:52.790 TRACE txpool: checker duration=765.078µs
2025-05-12 16:46:52.800 TRACE txpool: checker duration=1.065478ms
2025-05-12 16:46:52.810 TRACE txpool: checker duration=1.072907ms
2025-05-12 16:46:52.821 TRACE txpool: checker duration=1.195787ms
2025-05-12 16:46:52.831 TRACE txpool: checker duration=1.068037ms
2025-05-12 16:46:52.841 TRACE txpool: checker duration=1.068457ms
2025-05-12 16:46:52.851 TRACE txpool: checker duration=1.009827ms
2025-05-12 16:46:52.861 TRACE txpool: checker duration=946.998µs
2025-05-12 16:46:52.871 TRACE txpool: checker duration=802.558µs
2025-05-12 16:46:52.882 TRACE txpool: checker duration=974.028µs
2025-05-12 16:46:52.893 TRACE txpool: checker duration=913.278µs
2025-05-12 16:46:52.904 TRACE txpool: checker duration=1.733456ms
2025-05-12 16:46:52.914 TRACE txpool: checker duration=860.128µs
2025-05-12 16:46:52.925 TRACE txpool: checker duration=1.629007ms
2025-05-12 16:46:52.934 TRACE txpool: checker duration=1.078378ms
2025-05-12 16:46:52.944 TRACE txpool: checker duration=1.067748ms
2025-05-12 16:46:52.956 TRACE txpool: checker duration=1.247767ms
2025-05-12 16:46:52.966 TRACE txpool: checker duration=1.073958ms
2025-05-12 16:46:52.976 TRACE txpool: checker duration=1.068747ms
2025-05-12 16:46:52.987 TRACE txpool: checker duration=1.043807ms
2025-05-12 16:46:52.998 TRACE txpool: checker duration=848.448µs
2025-05-12 16:46:53.008 TRACE txpool: checker duration=449.939µs
2025-05-12 16:46:53.019 TRACE txpool: checker duration=1.544806ms
2025-05-12 16:46:53.029 TRACE txpool: checker duration=809.648µs
2025-05-12 16:46:53.040 TRACE txpool: checker duration=754.078µs
2025-05-12 16:46:53.050 TRACE txpool: checker duration=1.221687ms
2025-05-12 16:46:53.060 TRACE txpool: checker duration=1.695766ms
2025-05-12 16:46:53.070 TRACE txpool: checker duration=1.065578ms
2025-05-12 16:46:53.080 TRACE txpool: checker duration=1.017718ms
2025-05-12 16:46:53.090 TRACE txpool: checker duration=942.267µs
2025-05-12 16:46:53.100 TRACE txpool: checker duration=1.078627ms
2025-05-12 16:46:53.111 TRACE txpool: checker duration=1.065567ms
2025-05-12 16:46:53.121 TRACE txpool: checker duration=1.064698ms
2025-05-12 16:46:53.133 TRACE txpool: checker duration=660.548µs
2025-05-12 16:46:53.143 TRACE txpool: checker duration=1.095888ms
2025-05-12 16:46:53.153 TRACE txpool: checker duration=1.183117ms
2025-05-12 16:46:53.163 TRACE txpool: checker duration=1.217027ms
2025-05-12 16:46:53.174 TRACE txpool: checker duration=1.663486ms
2025-05-12 16:46:53.184 TRACE txpool: checker duration=1.070358ms
2025-05-12 16:46:53.194 TRACE txpool: checker duration=1.073948ms
2025-05-12 16:46:53.204 TRACE txpool: checker duration=1.131007ms
2025-05-12 16:46:53.214 TRACE txpool: checker duration=1.072018ms
2025-05-12 16:46:53.224 TRACE txpool: checker duration=1.065598ms
2025-05-12 16:46:53.234 TRACE txpool: checker duration=517.479µs
2025-05-12 16:46:53.244 TRACE txpool: checker duration=1.074238ms
2025-05-12 16:46:53.255 TRACE txpool: checker duration=1.066427ms
2025-05-12 16:46:53.267 TRACE txpool: checker duration=653.429µs
2025-05-12 16:46:53.277 TRACE txpool: checker duration=372.46µs
2025-05-12 16:46:53.287 TRACE txpool: checker duration=1.067277ms
2025-05-12 16:46:53.297 TRACE txpool: checker duration=1.084908ms
2025-05-12 16:46:53.307 TRACE txpool: checker duration=1.072457ms
2025-05-12 16:46:53.317 TRACE txpool: checker duration=1.105278ms
2025-05-12 16:46:53.327 TRACE txpool: checker duration=673.149µs
2025-05-12 16:46:53.337 TRACE txpool: checker duration=869.688µs
2025-05-12 16:46:53.348 TRACE txpool: checker duration=1.092177ms
2025-05-12 16:46:53.358 TRACE txpool: checker duration=1.071137ms
2025-05-12 16:46:53.368 TRACE txpool: checker duration=1.298347ms
2025-05-12 16:46:53.378 TRACE txpool: checker duration=1.381857ms
2025-05-12 16:46:53.388 TRACE txpool: checker duration=1.067058ms
2025-05-12 16:46:53.399 TRACE txpool: checker duration=1.535147ms
2025-05-12 16:46:53.408 TRACE txpool: checker duration=948.238µs
2025-05-12 16:46:53.418 TRACE txpool: checker duration=1.069017ms
2025-05-12 16:46:53.428 TRACE txpool: checker duration=1.067098ms
2025-05-12 16:46:53.438 TRACE txpool: checker duration=1.576257ms
2025-05-12 16:46:53.448 TRACE txpool: checker duration=1.068558ms
2025-05-12 16:46:53.458 TRACE txpool: checker duration=1.065198ms
2025-05-12 16:46:53.468 TRACE txpool: checker duration=771.979µs
2025-05-12 16:46:53.478 TRACE txpool: checker duration=1.065118ms
2025-05-12 16:46:53.488 TRACE txpool: checker duration=1.244508ms
2025-05-12 16:46:53.498 TRACE txpool: checker duration=1.071397ms
2025-05-12 16:46:53.508 TRACE txpool: checker duration=1.067728ms
2025-05-12 16:46:53.519 TRACE txpool: checker duration=1.065078ms
2025-05-12 16:46:53.529 TRACE txpool: checker duration=1.070068ms
2025-05-12 16:46:53.539 TRACE txpool: checker duration=1.066848ms
2025-05-12 16:46:53.549 TRACE txpool: checker duration=1.063128ms
2025-05-12 16:46:53.559 TRACE txpool: checker duration=1.067927ms
2025-05-12 16:46:53.569 TRACE txpool: checker duration=889.448µs
2025-05-12 16:46:53.579 TRACE txpool: checker duration=1.080948ms
2025-05-12 16:46:53.589 TRACE txpool: checker duration=996.367µs
2025-05-12 16:46:53.599 TRACE txpool: checker duration=1.069378ms
2025-05-12 16:46:53.609 TRACE txpool: checker duration=884.978µs
2025-05-12 16:46:53.619 TRACE txpool: checker duration=1.065678ms
2025-05-12 16:46:53.629 TRACE txpool: checker duration=768.218µs
2025-05-12 16:46:53.639 TRACE txpool: checker duration=1.065518ms
2025-05-12 16:46:53.649 TRACE txpool: checker duration=936.197µs
2025-05-12 16:46:53.659 TRACE txpool: checker duration=668.279µs
2025-05-12 16:46:53.669 TRACE txpool: checker duration=1.175937ms
2025-05-12 16:46:53.679 TRACE txpool: checker duration=1.038368ms
2025-05-12 16:46:53.689 TRACE txpool: checker duration=1.064837ms
2025-05-12 16:46:53.699 TRACE txpool: checker duration=1.167727ms
2025-05-12 16:46:53.709 TRACE txpool: checker duration=772.149µs
2025-05-12 16:46:53.719 TRACE txpool: checker duration=1.107078ms
2025-05-12 16:46:53.729 TRACE txpool: checker duration=1.064907ms
2025-05-12 16:46:53.740 TRACE txpool: checker duration=1.094138ms
2025-05-12 16:46:53.750 TRACE txpool: checker duration=1.017208ms
2025-05-12 16:46:53.760 TRACE txpool: checker duration=1.066008ms
2025-05-12 16:46:53.770 TRACE txpool: checker duration=743.048µs
2025-05-12 16:46:53.780 TRACE txpool: checker duration=1.064507ms
2025-05-12 16:46:53.790 TRACE txpool: checker duration=1.071038ms
2025-05-12 16:46:53.800 TRACE txpool: checker duration=1.053118ms
2025-05-12 16:46:53.810 TRACE txpool: checker duration=1.063648ms
2025-05-12 16:46:53.820 TRACE txpool: checker duration=1.069548ms
2025-05-12 16:46:53.830 TRACE txpool: checker duration=1.205687ms
2025-05-12 16:46:53.840 TRACE txpool: checker duration=874.588µs
2025-05-12 16:46:53.850 TRACE txpool: checker duration=1.066397ms
2025-05-12 16:46:53.860 TRACE txpool: checker duration=1.069158ms
2025-05-12 16:46:53.870 TRACE txpool: checker duration=1.027418ms
2025-05-12 16:46:53.880 TRACE txpool: checker duration=1.069887ms
2025-05-12 16:46:53.890 TRACE txpool: checker duration=877.918µs
2025-05-12 16:46:53.900 TRACE txpool: checker duration=1.069707ms
2025-05-12 16:46:53.910 TRACE txpool: checker duration=950.728µs
2025-05-12 16:46:53.920 TRACE txpool: checker duration=1.068438ms
2025-05-12 16:46:53.930 TRACE txpool: checker duration=1.069538ms
2025-05-12 16:46:53.940 TRACE txpool: checker duration=1.012318ms
2025-05-12 16:46:53.950 TRACE txpool: checker duration=1.065987ms
2025-05-12 16:46:53.960 TRACE txpool: checker duration=605.129µs
2025-05-12 16:46:53.970 TRACE txpool: checker duration=1.635387ms
2025-05-12 16:46:53.980 TRACE txpool: checker duration=1.067028ms
2025-05-12 16:46:53.990 TRACE txpool: checker duration=955.708µs
2025-05-12 16:46:54.000 TRACE txpool: checker duration=1.068438ms
2025-05-12 16:46:54.010 TRACE txpool: checker duration=1.065467ms
2025-05-12 16:46:54.020 TRACE txpool: checker duration=822.209µs
2025-05-12 16:46:54.030 TRACE txpool: checker duration=1.009978ms
2025-05-12 16:46:54.040 TRACE txpool: checker duration=1.068238ms
2025-05-12 16:46:54.050 TRACE txpool: checker duration=814.708µs
2025-05-12 16:46:54.060 TRACE txpool: checker duration=994.027µs
2025-05-12 16:46:54.070 TRACE txpool: checker duration=1.066467ms
2025-05-12 16:46:54.080 TRACE txpool: checker duration=712.998µs
2025-05-12 16:46:54.090 TRACE txpool: checker duration=1.086898ms
2025-05-12 16:46:54.100 TRACE txpool: checker duration=815.858µs
2025-05-12 16:46:54.110 TRACE txpool: checker duration=994.138µs
2025-05-12 16:46:54.120 TRACE txpool: checker duration=1.016427ms
2025-05-12 16:46:54.130 TRACE txpool: checker duration=853.618µs
2025-05-12 16:46:54.140 TRACE txpool: checker duration=1.068768ms
2025-05-12 16:46:54.150 TRACE txpool: checker duration=1.072217ms
2025-05-12 16:46:54.160 TRACE txpool: checker duration=946.787µs
2025-05-12 16:46:54.170 TRACE txpool: checker duration=1.065077ms
2025-05-12 16:46:54.180 TRACE txpool: checker duration=1.070548ms
2025-05-12 16:46:54.190 TRACE txpool: checker duration=1.235887ms
2025-05-12 16:46:54.200 TRACE txpool: checker duration=917.158µs
2025-05-12 16:46:54.210 TRACE txpool: checker duration=1.224758ms
2025-05-12 16:46:54.220 TRACE txpool: checker duration=970.337µs
2025-05-12 16:46:54.231 TRACE txpool: checker duration=628.738µs
2025-05-12 16:46:54.241 TRACE txpool: checker duration=990.078µs
2025-05-12 16:46:54.251 TRACE txpool: checker duration=1.253607ms
2025-05-12 16:46:54.261 TRACE txpool: checker duration=1.066297ms
2025-05-12 16:46:54.271 TRACE txpool: checker duration=735.938µs
2025-05-12 16:46:54.281 TRACE txpool: checker duration=837.568µs
2025-05-12 16:46:54.291 TRACE txpool: checker duration=1.033858ms
2025-05-12 16:46:54.301 TRACE txpool: checker duration=1.070238ms
2025-05-12 16:46:54.311 TRACE txpool: checker duration=1.134017ms
2025-05-12 16:46:54.321 TRACE txpool: checker duration=899.638µs
2025-05-12 16:46:54.331 TRACE txpool: checker duration=1.063828ms
2025-05-12 16:46:54.341 TRACE txpool: checker duration=1.068017ms
2025-05-12 16:46:54.351 TRACE txpool: checker duration=974.898µs
2025-05-12 16:46:54.361 TRACE txpool: checker duration=796.648µs
2025-05-12 16:46:54.371 TRACE txpool: checker duration=1.078547ms
2025-05-12 16:46:54.381 TRACE txpool: checker duration=1.071298ms
2025-05-12 16:46:54.391 TRACE txpool: checker duration=1.184148ms
2025-05-12 16:46:54.401 TRACE txpool: checker duration=891.818µs
2025-05-12 16:46:54.411 TRACE txpool: checker duration=1.067418ms
2025-05-12 16:46:54.421 TRACE txpool: checker duration=1.080457ms
2025-05-12 16:46:54.431 TRACE txpool: checker duration=904.268µs
2025-05-12 16:46:54.441 TRACE txpool: checker duration=733.158µs
2025-05-12 16:46:54.451 TRACE txpool: checker duration=1.067468ms
2025-05-12 16:46:54.461 TRACE txpool: checker duration=688.919µs
2025-05-12 16:46:54.471 TRACE txpool: checker duration=1.063527ms
2025-05-12 16:46:54.481 TRACE txpool: checker duration=765.109µs