-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdisgo.log
executable file
·1001 lines (1000 loc) · 230 KB
/
disgo.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
time="2019-03-19T16:26:02-07:00" level=error msg="exit status 2" method="main/dev-tools/common-util/config.BuildDisgoExecutable()"
7:00" level=error msg="InvalidTransaction: from address cannot equal to address" method="main/dev-tools/transactions/helper.sendHttpTransactions()"
time="2019-03-13T17:22:00-07:00" level=error msg="Error getting Transaction for hash: for delegate 3503invalid character '<' looking for beginning of value" method="main/dev-tools/transactions/helper.verifyTx()"
time="2018-12-10T15:33:36-08:00" level=error msg="invalid character 'p' after top-level value" method="main/tools/transactions/helper.GetReceipt()"
:13:47-08:00" level=error msg="invalid character 'p' after top-level value" method="main/tools/transactions/helper.GetReceipt()"
nnection refused]" method="main/tools/transactions/helper.sendHttpTransactions()"
time="2018-10-04T12:49:24-07:00" level=error msg="[Post http://127.0.0.1:3505/v1/transactions: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.sendHttpTransactions()"
time="2018-10-04T12:49:24-07:00" level=error msg="[Post http://127.0.0.1:3503/v1/transactions: dial tcp 127.0.0.1:3503: connect: connection refused]" method="main/tools/transactions/helper.sendHttpTransactions()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: 6365344705491ca48ce91942d7832a9a3ee16c4d28d349ce503912a3891043ca for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/6365344705491ca48ce91942d7832a9a3ee16c4d28d349ce503912a3891043ca: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: 03dddba71a02d6fbf47425d381fb177326fbe7594b11c03120f1ce61dcc05aed for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/03dddba71a02d6fbf47425d381fb177326fbe7594b11c03120f1ce61dcc05aed: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: a88654f1277526b11204832e61044cc30b297f5b16f621bb99b96a3bc32b784d for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/a88654f1277526b11204832e61044cc30b297f5b16f621bb99b96a3bc32b784d: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: 2ba40023c48a4ec091f2bbfff426316061fd134be6fca2dfd334cb07860ef1bc for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/2ba40023c48a4ec091f2bbfff426316061fd134be6fca2dfd334cb07860ef1bc: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Error getting Transaction for hash: for delegate 3505 Get http://127.0.0.1:3505/v1/transactions/: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Get http://127.0.0.1:3505/v1/accounts/d7a6acf5f89cf2ca4d618b3a5aeeb3d3ef4e0574: dial tcp 127.0.0.1:3505: connect: connection refused]" method="main/tools/transactions/helper.printBalances()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Get http://127.0.0.1:3503/v1/accounts/d7a6acf5f89cf2ca4d618b3a5aeeb3d3ef4e0574: dial tcp 127.0.0.1:3503: connect: connection refused]" method="main/tools/transactions/helper.printBalances()"
time="2018-10-04T12:49:27-07:00" level=error msg="[Get http://127.0.0.1:3509/v1/accounts/d7a6acf5f89cf2ca4d618b3a5aeeb3d3ef4e0574: dial tcp 127.0.0.1:3509: connect: connection refused]" method="main/tools/transactions/helper.printBalances()"
afd88bcdfa2596263fa899e2831678a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c3f07248432069ed0b620ace259ee668b2e091c8105187297043676d588d063b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 88814228675fc943bbc209db3f1619d923d7aceed78305a10f2c0f791998156b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0930464ea796fa4c2500b41fe83f5625d3e177cbd7de49e09b467b9f8d376b2a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f0ef4ab1096df27fb290cf06ade7834d382c878fd225073d50885c01a00c87e1 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 794e6b2d1e27d2aaaa38f3c7322379224c23064cdedf0760058aff8704e0928b for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 61970661223d6140006ae62db2cb19e1f8fc148cb5f404e9d65da06b5cf3b1d6 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e6a8aba0510a49bcd3cdde6ad35bd6a907c0b10cf28e98319cea911af47e259f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: be5e417321673e07d5d3a19a60a49340d7565dc61c0b087f75bb8284f777a3c9 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1d4a9b53ecf8c527a4fafb23a0442efe239c8492428fcf52d4435c3c14760a8f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b6113953210da881b475ee324c9927842662b727ed5e7a0178b324c9e4057e47 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 61deb753c8aa582f550dd236a1c18ba85cf0687b396390224e785ab389b62cdf for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4ab209ac09c7d23e334ed2415576a05a79325ceccbfda2d0e5973f4995e3e7c7 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1652503c9c9090ef9b53f86cffe87235515335d159afd9d4b76035ea482bf37c for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 62edbf5e696502c28764b8d6978f2434611b2180c93e23ddd380b72eeea035ac for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 70fab49bcce4f695dae410ab41757f76be2985af3208cb127cef7f0b718d9da7 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c82c875ccd35176edb62a841f799856cdd5b7dc671afd6bb3e0e7b4dde90a2e2 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d58f314124792b955a280ae77f5146b91ed13851383a77471162bbae10be5fe0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5bbd3f9af1e2eba6674f5f4fce675c06811a7b5a7d99e4de48980c408fc07c77 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 49b6cc2f5b935ed32e727895e767ec7003f93775c0c6a49d2f7375ffe6688900 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9dc6bb95a912c189fe89aec8dd2d997009182e2e9d38f9d91cd4120c52728b40 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7bdb878c0be042270f5a844245d163aee330a256d7b9589a6d8beaefa7999a27 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7c360b07f6d5120b522e8aa83bd016818f21a38f346561bcca3bc13c792e639f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0bc1d7d9002fc5e64c175747361835fd2e0b5b25cb9058c5ff289a22b049c890 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8a4785d95244bb3e39a9916373d815251b910c4c134d0899c5adceceb5027a13 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: dfd1418d964352e0218611f1413b3d70470bcfd853a7762898ceeaac4974c1c3 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f32ed2224834b820b55bc76f6213cceb73a1680acc35015c6ab0582113c9bae2 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c797a61e562774ec230f7faab50e4ffa0076372d6f2d3ef27f1a1c72da0c9f4a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 828a9820941b115505bbc29f2bffdff09618f0c915c2733b341cb0ff03e3e15c for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: aa519d18f8b568e720fa4606774fd76d4eaf6c78dc821ff0295ea2fa6cc39fbe for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4b1335df8809243395e46de82512e7adac4659ce2cd2155d093b16604c3333b5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d3250d66827ecdfcb127068ca8c9098b07abf7442c8f8dea4928d249cd9dec8b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d681671b0d93b853c46b9aa74f56a24539598fb94749a0055f4527a2d2eb09c6 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3d436a396643a642797d272edce678316cdaece2916b10fa14cf21a4a9a8b080 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 19741e7d82308978ebb50b0351e3f3d7da7cd91f7fe3c6dec78f7f398af3200e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0935df45e12a05be5adde8e6287bf85ddd2c5aac20f3693a89141f64eb9e7808 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 29c1a6c4872377d477e4b16baf27fe4843162558428ec1f54f581017e5f0e4c7 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cba2c5323e1a7461336dabbcc1519789ea415fdc9de426d39acf80fb84dde147 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b8b9b1fb516d6693bd4a345d0062c350925d40d15c8b712a1ff6da514e4b2097 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3a15570ba575580191105b0c5b03e8fa7942b0e31df95fa267bd1ffff74ec1d2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 96a8dcfff495444cab8c5674027fbca999ad28d0e9380a162a8e493ee7453b4a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 91ab5bc166b7e4d9873770875192ef8132a1cdeabe9b5e700ed7c03984e65a4f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d83b397fe95661a88089ac968e5b1d3503f6603529e0510e8b3b6f667dfee221 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: aa75e4e178361d12be611cd0ffd85ebc64453fd3fef0b0f27f5db9053011fe4c for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a0055b36c8de7c0b914942bab7e3fbff4774330f2219ad5e91b3589129e8f292 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f33a37268207955fe0b7fb375ba679201dcaed75a5a0efbb2a8c82ca2a979fdc for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ecf7d217af2b9ac3edf1e189da2ac3ac4f7ae68658c6e1346d357d15e9c52e91 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2327996cb0c82e8a1f84ac9802385fe915c6c285895696741f84c71fc676bd98 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 732372a6051a25a686fd4d06b54c728161f18392a4ad4c75d0dd72dde2fd76ea for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0a6302ad1448a0ad7638cba37a85543c27554164bf75ed2050cbbd7c88419faf for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0a9d8b16d97a514af29254a502972047350b0724f81e4751419649731baa9079 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7088cbe80b852c880aac624e6a7a6af51ff38f281a2a5f8bfb245628779fb136 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4292dbc1fbbb28f349efd9f223ef63d255c15c7c0113acddd235e9af9e9be527 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ace5abf528235b444c280d0a04ed1edea2bfe8e233fccf8ef67baa6b7a48a7f5 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2e2e46fc1a064e0a03edab6ccd25623af426bd262354232661157c9d0a4dd0a0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 16f3d1af24304805d5783672864318d6d7a20b0ffce7f218181b9a98f6831b0b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 08bc1b927a924f2a4f12810ec04e420a560368d1d0e740d04db4806dd6d836b2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0b3599c2d8c085d80b65073d8d9049b963788f3ef8469bd3f6ff0228260a0e2a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a844edddfc6399465b679d1271a0e8fd9accc537a6dd3b0f189cb042f8ba3470 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 86049da98268f1c308ab3a5290d331aab7a923d48119a4a19d68716e9b9da964 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d405e4422c82cbc708b9d1902167fd8b6a4136312feaf9c7c0a52015ba54218f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cea05bfdf50ce673a336ccce02e726d05f5739021a8b8943e5fb4e28fed8260b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: bd22cbe92accbdc17215ad1f0befaefaa59a007b3ed11075f808643611ab0ac3 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 93dd07731742a3ed7b5b752067cf9c1c458dc350bf9f74694178789fcba4f6c3 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8437e00b887fd9fcaf04d70103808838b16be57994900aca2e774aa61a941f0d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: bc44ce63801fcb6935d82e6949d811667fd0bfc42d0b01176f01457a95649de0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0711b28489c73b8f362fcc4be861a7c61511d35ead78789d6aa62d8575608d0f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0ead5f80fff8a95594c4ead58316fff3a4f20678bddfa69706cde7d932b20fc4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5dfe620b864a9343b08367a9ccfc03f594d26ae4bf916a5dbb0c55654fcff279 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d186895fe6bf139dc604365101d1b9f2ef2a186c6e35fb31c81962c98385e98b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: affb0f40a5c38bb40ec5aeb705d9c6c7ee7e1bc068a036cc5b9bdd2c0867012a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 965473a9572291a612719e7fbc2229e3f47ce498776460bfc0527bee584c6a43 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0858fd00c25f648679516dd035ade099464f19daa2f0dfaa72e4eeb9a36373fc for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 49fa4d32ad2092491fcdc648bf967e01bdacf31c842f05fbbb6d3630113969af for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 10e34ee999333ac98b30771aac315508f538b07fff973349732488a47fddf143 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7d095d70d56a8535b8d61eddb117286c45d75aa0f03d844e045df2081407f188 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6790b050fee9e93ca2c4eeebdf7a96258b91dcdcd7b7c9c8c83b21913b8bb419 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e31b9c549be5add61b8ffbdab1baa072befe59b17dc6a0b95373be32d617dded for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 49121fb5ebd90fa7f8ff9b1fbb4f514db8e7c0080e6dd757a85e6e7bd451ff9d for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1619f0267f4761319d39a6851c2adeba42b222d37043dd9be1a6fa1c24a4708e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8d2dd4c3f12a0bb0d0e16b3ff5e30d1fd87f9533922b052155674d4a9661cacf for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 45ab2ee7508918b12f3beb6a4c80149d1ac782bed4382ec4ed9d5bb2b50be45e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6fb50223e3cceb05f9740832633be6016c045837317dae674c671f3d88641c66 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6dfff41adeb9b4244135b3a810d09a64509c5a3fac72b91dea785fe934bba9b4 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e3d0d2e3bb6020d01d6ccff95bb711a3ed04e6ac9b70e17b2c2ec9162f0e804c for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d54f88b7bdb977373e09bfc1e372fe830eda7f74a70e81260e958fb1e3d1ba00 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5d3272fc06e3dfe4499d4379923e213b43d3369e9dfd9b2b61d1116121620cf7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 30c2cedcf27353078f0ec680c4e1a9a2e0bc74de0f04a37b440322662e8ba7ee for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a6514e54b223dcb5ac4914df285d1bc9cb5edf642ab24aa65dc4f01736dd3d47 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: dc872722de7995e231355ddf06e0f13ee5bf1797e3a84bb5be74dd0b5450ae7f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c8e74a652ace0dbc3387c8d0161118cdb6ef3d169097dbd923c9d1172afa95be for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a16a6e20d1f702f8b367002db4f104c083019b78daa0207691413a0174bef13e for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 20306c0eb1ca74026028af5328d17fa1eab05d68160de0f73ce00a7eff90050c for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d9c392ea6ba6c57f9337b4e077b7728b9bde78f0bca3e93cfac4b5b33367d25e for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f71ad7abf0f4686e7e867c5e14da749e5b45a27c98f3e70c7eaac76938948e76 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 89559d5f31beda9e1213a46f5fea4938600613eb67363b674fa9646c82ca8239 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4a924e36119bce7e308d963df7bff56576d3a7be63bd5e4ae1023edb286c4926 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cebf750adfe425c7e8b339363cb2986f1af01d8e536b09a0f549ac4ca4acaf2e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 68148fd692fc17f25d75b45acc0d163af3623db057411e8c4f6378ead6be52e3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 496ff5eb3cc254ce2ade0e0bbf010c8785a541671763fc41e84f039b16ec586f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 343963cce13bcf8970d9655c1d66aa3dda32116aaff57f0ef8efda661ed1c034 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 728f7dead9808e82d58c55d8fd32634ec122f997b94d99292798c44ae107032d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ec82765bcb22a943397750ec4ab219d78ffb18fac86faec161ffa9ce2fc4d9b1 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 95ddd7862724a66d5abfbe282b509a0a936c54eca19aa2f6f589314c6e9611be for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6415ea000ef2190fb0d752757816dc5ff0a4a90eba01804af7890c41deabbe02 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 11b8336c2092e1c42e7f2406084b8e54fcecc99cbc132814e1d25a8a3ea6f6c8 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 944c6144b006684532fb24f946dafcdddbd22fb48195a0db14b41bd4dece8aa8 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3ae967aa390d1d3132e979985d0ab874ebb05a989bb94e3ae61da85614159f1d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e48e23762ccabf351fb558c1f1e1a8cc76ad897cbf8ea188f80f6eb7ff2e035e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c0122bafc36559268e1dbc1ec93a658dea1630e276b6233d9ddd8ab575b4ad2d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1785515609abbbc2e7ba27095ca973cf12b31bf834518ef0be0c1b3a658c56a2 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4e859effc83fc7bcb7c6d08c3b2d49e16d5a9bb14933e804c41113f92b45ac90 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2a67cd92630cabb1640ff092adb8c1dbee7dbb04647d0e372d5993ea9690f553 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 824581e5a850bb01e29114c3c769b4c7f03fb80c29c0869ae0764f8dce2f13c7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4bdbc5a4e5d7946b9bba45f8e09336a2b7554b25dcdbfedb8c3ec4e966d0f359 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 87b5284f7d97805f83e3a2481673d788348d9465523a0695cf4a0319bc1579bd for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9688c2177a33b84f4297100816ba4f8144ececcea3ece6e76df9ed9b43444abf for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7e819f4f2096fc1d4a056aadc0e7f04d2c05c2abe6189d2f4ba12eb6d46e293e for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2b74e1018dc279f00a04421ef327d26cd5a4929307e1d23151f938097af5b149 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b5c28e5119e7639065a0120ee3f5aec50e82764e2ced6a5f1eeba526915a8767 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f9befda9650fed6507aa8f648533ef741070abc3968d929db9a2b496bd2bce13 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c1e34ca8001e1151063b816091e012b29587fb095ae94919f3698a39d4da0f84 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: facb30fa36ee3890c77e576ccf6da4b481bd3e648f88f627fe3275480bc3fbe8 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 958a0729a8b57e8692e1d62ac425b82343dbd761a4afaad65dc00246dc7b379b for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ca1cbe80cfc8c2a3a50d7efd529ffef55dfd0955ddb35728b93bd5464abe2f5c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2789fb8612616f4af34ff9b7e319dd0e41b5c8dd7ee93c26e729b919eae82ea0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 10328a76e710661d734ccc452727fc9397755b463e7bcbdc2d9e89b990a96d33 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5c7f7c33df7d66e57edf9a3d09d2297bcd091d0cdfce2e28899c90ce1eda237e for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 95e35013862af777dc41aa029610103f4a8998f23442807dc77c68cbc3e25576 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 16bcde46ac62d8ad92e329a524371fa08eced38233276910a9d4d70635d3bb85 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 14dbaae1a007d07d893e0b173f64ae74c6f3c7207d97344532dd0a4ce5d59d68 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 750c593d935ef3fce9b5e2619e9446db189bf03dda4643c0edc79e9491d80ab9 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0a707ab415579661ca093b53bb13765130081f91c228547ee815a6a4d0b74e78 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a35c69725ec0c7ce8097c03a11ff921345bb0b241ca845fd6017fd69fbbb2f86 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4309d4317db492385fd10be794e4307c0d3dca46b7d2e554699b31b052b3c0c0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c564e1111082c4efddd994393512ac964fa209e6893614e85791f7ec5120670d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e5cb6814f9f73482aedc983464d7363081538f3c57d8a0f32bd55331aebc6ebb for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4d246b41b3014e2ae0a8b47f34e9fdca12d9056b89985ba954173e986559aca5 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4ac863587404de3368abf9b8ad5ebbe74ce1f959dd0c9a648d46ec7298d25e11 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: df38c95e092a12115ec6a3a38e286f90388754688c20b24c12af504d4d309502 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e9bb1e784a8947c71830b4e533c781f9c8cc3416e207bddaf0738d7362bffced for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: df81b0c14aca0d1e3c8419b68741a6b3be206cb1dadbc683756afc18a5b98e87 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2dc317cf8f0e0477a291dcf7991c9139ceb355508d4a3b42621ac710edcd865d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f20785be6a0462398a42aa3acf3261bdee90dc7d5858c8369c0843d9227152e9 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ff391312f459cace41b91445d911dc4fd22fb519e704352d77b682bbfa22caf8 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8f68e4fb842415c8d1bdaa16219694f3093c848750a40a7430853e5e23c8595f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 825484dd0f6ebbc7661da2eacfefb75dfaad2eeff10c49b1a4b4d47358954c40 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 008338e6b1f290379991f4f27287fa9184ecaf5175ad30573f82dd4086106495 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7eeef89ee06e2c10ba7df29116efbb1e4335166bacf3a3ffd7b71209e3df14a0 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e1965118c25cac5a95ecace04bb71deee52563d67a97edb92578b6c5e14ce312 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d6bab4f598d759fdf29b822d907abda09bda5181e28b79381585e205af3b5a09 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2cafb88d9cd73f46820cfcccb6ca54521061501eee8f329052fe9dc7549dc98c for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 256d588f9d539fdd17b36b283f458c2c81328cd41544216c67da58b35c2b9d8a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9b185a79970d928fbcc271dd48a87d7a2c6d1734b915296de741ede337792a0a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c42115a31540f449e414fec85d56e1cd95ecc200381df85ad506ff0447333e0d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 68da6d79e0b64f8c25aec2dafac8b26dd59082153d13d86c55736e5b17286f55 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: eb2edffc39c3fc08f82436560cd40bd99f9315bbb5b1de2a32bdc03eba406d2f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 177081b694d7043da67c733b4fbc619390f211ed0e09c84bd4be322154f8782c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9db9f87afb4c87289bfe859c523e256badc723d82e0c5878775acb317b2a9da3 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 437be000f5c72423c966b739f562f268551a5f910004696b49950c5eb99333db for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ae7bfb9b3afa69938c5c4c161ba75f1f6daeebe0d0efbbd00a53bf3a3721a578 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3e4c1472946611fe417bde8ccb1c16f52ecd2230657c8b6a07e3cdda22c4ed0c for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4b95125c5ea36ae4175ac290ab3b63a171dde572eb71f6c8f5721aad954be549 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 50ad9e1a09068578609fe672ce1e290e38c17426a3597b6329fb7beeda172ff9 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 787806471bb71536ba5af519e8d15ee50893ec40f3f875da2a4bb861fd9cf574 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0662e9cff4a2dc62c1e453e38d86cefc26db17255adae5255a7479e3f5902004 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 30bfeee79a4c8b9152769ff9fbd3aa744e0c94748b6f78f1ec3fdd31a8ceaf22 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cf3694fa9d862607ee9f1e514f3d8bac8947a71658447659ddd88872f1b715f0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 883020250f64a0b022184f1591727e5a336fc42cfa6cda746e09d679d087e8c7 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8488a1ce906a912cce602b996d0b2675327dde188a66e5604b969d774954c8bc for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e68e98a10317b86508365a64cfaec82a78cd7fd16b18555128cb15fe0601b549 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9433d9288b2d4d2e1d8cd900b3c9801acfec191409954b310dcf110aadc77832 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7e0a0463110ac3de85d03ee77564912d68380f47e653fa932d761876dd05955d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2cf855c16471b3714981d678cffda2899c83fbe89b67b37cb3c4d5740b6587b6 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9d0775c62f88e8ae11ef7c6b880a66471caa9d041c825713a6059662bf5da687 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f0976cdcce40f1e2f2a59056da18ac5a6d8e8e1be11060fda37e830479411559 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b5d63f24dc8c05f03d5a3b58bb561ae87e978a702cb85ad6b598623bd3bbce83 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2d5cd263fbbf18433f40f8c003f7bcbeaeafbbd2512c6a5a22315575ef49bda2 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c38ee71751d4b073db428e2ce146a8edf8a40a8d7e04336741caae53ed02caa9 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c31fec9beab32131e6fc4ffd4838408ebb7e76e8af2f1dfdc8b1b0eabea9bd5b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c463d6923b204016da48fc3f51517e53ff8bc61324585737d8dea9bb26fca8dd for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 95bad8f2be97c7878d7d0920bcb9ac496f7c8c76a979f7b22bc681919458296a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 346f1146cb665d9828590fb538576d4d128b9d2b8fd4a71e7e1f776750d30f81 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8b578aeeafb8e6dd448fdfca9b101fae95de35937eb68c1e4e44e929a67148d7 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 00948dc314cbbe0e9ca8d16c5d0f67d4988c6028512fcd84a936e8beac1e615c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3d1ccba722eadd45120d29dc6905fa6f9a7a169b96b76dd6ef20f8a2db7216f5 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ba4c727067375b70e87aa2b4f9182aebdd13e06b776c6e2ae42612eb0d4dab1d for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8ed18e3e9dd110e8225768c9798faf269584acb40879efe603da712bebd2e61e for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: edb0cdfe7f2b526ffbc31c30d145f3ec2c8fab5c21c9bd150a0df1c775ae77ba for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e05b1dfc2b14af47ee8131df563258f24767c456fe1dc40321e997f0c9bc291c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9059fb4fe29f815b3fd11dc674c6f8e5ca1e1239caa51b128b19f5393d271065 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 96d558b67df122b661761fa4dbfad88bf39bf4a3ea94ff521b326feea6bd9476 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d1f30d4fef5d8af4c22497e932aa69e0f3346257b0df7b93e300809749f650fc for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0d2fa12e5fdce1d6cb01f4a9dfbdc490904e2d34fb9ce40e91c46b9697da0b5a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ddbaff38a60dd36b16bf369bda9971ad6218fd7193adc8ef01962a1637baa611 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9f999c6ec924ac3f75304850abe321089026b0c51a5dd7b61391c956d81d9c9e for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b408f61b1f58def963a95bf8c4cecbc99e96266fb28fd6b674739d8bc8dfbb91 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3c6495d82cffe9d44f0c8bc3013bdcfd8acab8bd5f349aedde16265fb106bf8a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 86987882b31287b1737431ec63689d6a7a365be8b3cf80c8b57834749a64ce48 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9f1d520618c520b032a5eb860d5bc30d612710e64f5cb5d64d1f87adf992a897 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: bbc8b1d163be3fc96c652fa218f2da6ef63868350e153fd62c28fdcc0751361d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 46702ba6980b4ec1f941edffb5492f1a121fa8a70be2a6e82303e032837c7771 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a21c13d90b491638428e930e0952e422907568250cd7c3a0ea8872a38a2527e6 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 44d13f31948afb5b105095aad8595c57e555535b632f4e5c3253a579776ed785 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ee2b6309d2da53b66921656bf35342fca98c16352f77530b3358b050ce3af71b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d1d725b29ab10ba7592df4c87a329142c92d994faf7ad11278a5faf0e87d2b7c for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 11ad7fc98b0391b72b440bb16441c073122673d9c91c38d021e8c8eaf5e10f3d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 31e0d67f2b2d3289a7033cc5956e844b36421e820cab3c2b5266dc8ba7974192 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b31eae38d2f71ec605c1883da46176a3ae1b255c0b444fef170cc8bdda712c5a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d66d55b833e541622470035935df0d5ad5d8a7dd73ca93ed53d5e52f18b82f1f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 87a8710e9582031e4f9d75100ed556cd91522f9d8fed9d61216164fd592bf791 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e0b19931bd772858f169ee50ee83ad14b0a9937e094f37824d4d08e4c9670ae6 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6c7ce98c08a2c67d31caf9c12dfce1c6e36d1f0ab2e87dbb9a97003f0329531c for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f60896375e69a95dff2b915920eb11827b758e3668441ee29735de51f4cb1002 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 94226b58266cc5e9e6029ff3e83a3cee96912ea1cb7dc933418138d5c5aa0a30 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b54d04eebbca6f25e2c86d914af75cd419d2a6823118cd34bfc35ced56174219 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3e284ee64d7aba1014e887de36ce1bfbfe75e5e186777648c38dbcc72eb21b0f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 456616c6a3953047709f9fd352469ac09923add22411ef611a1f1d4e4facfdd0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 25e864eae168aa2e1cdaea0705e5ddffacd4bdbc85106e9372ac90ae6ab94b2d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 38cdfcb56544ada0b9f1a746dbef6b6f1635b9faae37509f6a9cf8a002a938d2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ec76264715e3ee17b10cb5698386e370ed4e28bbfad27f745676a431ca7dcc68 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: bda98ffb2e4906b72a725136ad78f8c7d6a5483770b6814cabf165e60c413c19 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 371160b5002ef3a8a233d9e6a1a033ca57682e4519be0de94aa2184e7f213cf7 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2f14e96168bb25feb6acf48ac9d2c67998de8c955834b1a9d4ccaf24ac637bbf for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 879ccb928633b6ce733106523749d593973db63ae6466ec43c2c512a756f7d34 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 58439dac2e1685e1669783f614fc379317f06ed8ab3cad4ec6b2d5728d8b0d05 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8222706a34793e439c9eecf41dea45561176b2fb6443bd234e4acc12352262ed for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6576e6e5ba7e83549e4fdc957e808a8960d7156206522761e008119925303c74 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e0ee22838289dba29f7e86b86cc9850916a83bbfce6ca630c6970b90dfe6a8e2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 614df504231f5e938a51846414a683e12fa2ff351b4a39b38b62b19aad75afe8 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8c0cb7c1a0d8b46c434156bc33a386b9e2ad799e8a37aceb092d0d98348e3639 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: fc700a6a76511dab25f84d635beb8d01a3bb91b744b0064df9b6862b2e2471d2 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 146fcfff1fda8099b9a70789cc21223b1e05e800da7500fc5d87ec2f03fe5711 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 38966e237cab5aa931848b480d47713f02dc692a4066a756f09a2f5e591552d1 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 43b466ef28b8a8ea38e98cb6a41c41ad353f334f2c9a4a03e23dd43ea32ec537 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9454eb9b1e1b9bd5481dc0dfebc43e21ca3c0b76b42179501ec9e92ccf5271c1 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d70c798121980e95f5d4ac30bc46e2cdb92b29204259ad786df20a05c9bc6c74 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b33973219c58b32a7e61fb8927c612fe9a1a5322c09ff7fe20cd1b520b32bd11 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3903e6ab333abb7829c3d31c8a090b7be742cce8c030b00d06b4bc1187997cb7 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4744f4183b64c9e5ee3fd5e057d9e2eb876416c8a9c967fd5a45e76840d30870 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: fb4df4fe406dda21b671aea481370b56f626b46d44c1abeddce5c208fc06914b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d2ea3dfd1e576d0fc8a39adf9bd0466379bd0f74c7882d19e61fbb72a3cd42fb for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: bac96c0de79b870d02ca5a1c3464e323cdc150d4f2ea9423a645a50bc7985182 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3244f76cc430b115528f945d7a4568c5ded81f5979fc96bcaf67af2408a8daa7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3e62e177c97fb5a3db01e6e6479b9e8b0ee90aa4ed916f43a40ce61accb5f69a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8f6881a5cb5e6aedf22546ced6b410a2a6181e0b59cac38adbdbe645e5381f27 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 821e2b457106eb4a4adfea2940b50216ee072ea64c6301a071cd176cba672064 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 001d25850dd739b3f3cd1215eb309f6db1904af8d02ec57a162df191426216ed for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cf5692c6d28c07582f6745c528005aaaf466feda135395fa37026c372787990b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 895e1df29ef68a326b621b142a498f6b722191d1b5c647a8a50605ad6afb9148 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c0e56a8c743205fe5327815b4cd5c47344232c94c150e9c481b93d3b1c5be9a9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0de92a4eab368c7fb9898115cb9bcb877e2c2dadd4e59f2654e1ebe06bfc28be for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: da1e1ba068a3dd54116b91a0aa64473a36bb2b877066c885e4213bffb0ba94d0 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6321d61d40ec0ffe7f072398e3ca7f3a30c0cb6f7e5993fbc9b1bf1aac484c86 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a46414cca12d12c1e15c0b38987c8ad3ac097d7b6e27b1e5458c42d5a6ff06fe for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4d67f2a4d85edd67d1804e880318dfdd4aabd82643cd52443054c819ceede0e4 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 71c970d77f432ae55a52a543d7ff170dd3f7f20ba4249ced343c18df57eab742 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b540327bf7c10baa7253ccc9e4410b5a91e8b52d6c3a3667b3e87c9a3367b1de for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2db88f2583fca7c1f950488838a9fcb192fe5e72a3bc58f65dcb1ea365c65886 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9b4be790458f2e56a29171b94294646b1f68dd8c22cf8035959dd6cc71929c5f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6f7c09d08cb712a7779cb6a3c4f49464100ab4a5f6d8211cfd3ec38f4a7b0f20 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cc040d211ccea2a9ff7406cd2cd365a67b7120f4cbbb53b4d376e8ae6b16fba2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 68ec0e91c8014978b7ac9ca88d177487a21258c5a0b11f24c5c5e660c37040aa for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 72f772082a37cb54125e238e8183dbfb12f552635ce0fd769a2d47b2c278ddf6 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d4fe8d04368a9228a592f2525ead453bdb0e342e0ab0062701d4189f2e2a4577 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c096365344c20bb2b4c1f1353266054330f772516f82430ea36a044cdc32dda2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 17052fdbede5bddc7624e69b5fb488329ad93928612280007d914c59c7337693 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d74615be8de2eb9e9bbd7fef115afb86ba5ef9ae25c26beeb491bdbdbed241a5 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c6724c924447e527c58ae3e334b085ab7a78dbe790d19479d179a39392312dd6 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a6aae94aa40280e8b1f654e0d30eee4233b1b3945ed9dc33df43aeb1663fb39f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9be948dad860cb7194d022abe234b401da26d3d0b30b98a1e540e44a440015c9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d33e4f65599efe98f19136f2194a57ffd0911504268f91573d12466eb33d2967 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a189eaf171c9c99c194f9df5e4eccf21731f8a591425276d6a762c2c1241e6a7 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ace823f0d039a0dc1d7101c33371e0964fdb9c10ab7eeba461e284bbdba7174b for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f902523543ed42af7f1bc9939bb18450a2462f5adb433429ea1993cb20708128 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3baa6533e9346a0108c2cefcd7188d9d790b7aebf32661a04c6b3977c31cdd2a for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a75a6f91afff1eb9444cb483da45a4e2b30c2bed3bd72dfc0770dbb54de765e2 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3c89055a8e817607c2d095f8a8f4dfb45dc8a963bc5104363faa3d21c0c0d9d9 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 360023c56f9e5f80a64bc65a455e8628295b2cfa941692db04bf8770dabcac9f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b44da9f0da29434fb08323565fb2ea65da1f02ab7a02cd545bc86da065700f4d for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f624302c5f4d4ff260c3b0d6e1287e57caba624cce23729002fbf1820fa040cc for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cea673c2c7c42cf20b564112419baf4e56f867a0e18e2c16ea4d8e8acb85cd38 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3466c2d46632f107c1fbf358cbe32d049db7433035317ea8c83ae41dc1ee1843 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 55cd2a26cea069deba89e2dbf247ccdee15b3ca8b2ebcb5e9a09b5a505e7f89a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ffa9885f825d21c2ad57a6d25429687e9f72bc77f4f46c608db865978125234e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1db6c3029e1b21650f42562d6e8e89b3f254f99d02f911d3ae517825ff8e187b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f9055ca0ceb4dd44c56763880245d3f1a04aa6ae6b0b3aa2e9271c2850f41074 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 65a799eca94a77c1a695b4ca30ffb522b607796316c30fa230914c733ed8c256 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 63e945550afae1518d08fa90315023dee3580e1ea20e035350b99f51fef71225 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 953480734a5d2043fa94804cc0b04db670f90845f23362cec3b17bfd22d85a74 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 52dc268676e1e5e2edd474c1aac1b409501984b222a0c8e6522b4acc385d38c0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 011a097d01a5972de463fbf5a6f0b5d8f925057d514fa537cf8a5b152c79c041 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e7fe463f18e5d360c7cfef2963dedfab057ccb1b8fac4649f1b85c3d49377b73 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1597c7b1e4518da7eaee4351fbdc127ce19f87ae5ff404c07abe031ff15b2929 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 27f721bcc8323dd75798eba8c5dc3858498634b328a266804e76977a4b72d4d3 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ca1c192562b0aef0a7463a94106a9f34553b376f37bb1f9c3d5ca73fb4184814 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 54b554b43fa2eefee30d4c73fa34121fc6f8ca1cb67b1faf09a7b6b79a72f41a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3e753e363aea965bf863c26f95ebdd578d9cf75ed1cac3fbb79e82a583ab19f9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ae7c97d4d26feea2c6ecf7cca2440c9d4d9eb2e191d0a5dbc49c832fd80b4be9 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 79c0125278c5883807834b4e0ffd71c96760d224aa1d1daaffe37d9ad0a58ff9 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 217feb22e8facc4b258c3946a19a090815c2dbd6a637f694506c3154b3576947 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c0b1afb04e3b3e3cbbe50e60e779558e4875dee242b55bd4b18b1a26a4ad0d73 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2843c805dbd264719b96ccfd7d3b5a92f89fbeb8081202bab6d525e1ecce14eb for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a0f7dd66c6ce0720a73ecc8b99a62f899268ec766b70983488d971712ee79fbe for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 39abc72230dabc5bd6146cdeee2fc681665ebdf53982a3ef67e93b46765202f0 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4e5a66df0be436521f28942a4e0465d3a66cf437b81b6dd72e9f539aaebb40a2 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d89c74d2234fff65a065bc6de3520e75cfb206ae17e99658a1efe321fabdafd6 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6562191ce7ee02e12547d76c6cf41e0d7746fe7f58782d72097bc399c9449c75 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 23b59a29d302af4e9c18c0779bba8705e6285fbe66a5aa2728a80d5dc8ea073d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 47aa6a4c4158c8e1f23a8989a95a92b5bc94ad1bc18c0a654f85d3a6c249dad4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2f70930430c923b8eda649198f83c64742c0ef89c284edd76de590f4c1771320 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 22f647f4b63dbba2b436724d33e6a2f2e88f4d4f48c0b752744ca5659be6045e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f9ae378730712eae6efbc0347b043f9be27efd510624eec86476f69685e13d7f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b67350bc28573857866eefbf297d5a7f514ce1bba2601ff83aa9498d2c94fb71 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0794e06f59270c242ae3d4b24c60f0e286ebbdaf87c9ebacc4ae98956db1419f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e49f1e2825baa825884474ea4c8fb53e39d3636b74633b867b24507b4040de9d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e1662d0a89cb3855b3f05538afa6c8daedba4c3502dd207fe736709d52771a57 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: efcf95891ad76828fe29823223e2e64b2bc93ea409cf87e9a1eb6e56b46ecece for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a9b29c1dbadd821d25a7dc0d2f76ca006a6a2be78cfada1f93d1742edebc08c4 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9a034bc470e422b7297f3550fb42e538166743bd01bdfd14f320c748152e947a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 70232ccf296a305aa53e74c8123d63f8a54bf21c53aeae6b61c55cf404d782b6 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4e422b93861f17eff403884ff5d2bf8f31534001ece1f5d1ea46f7460d89c378 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 65f27dc52f9d982bf87db6ddcc9f03342ce864fa66813f3648eec1443c24cbc4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 29a4da21ddedf11800ea0dbbb397cc57d6aea7a0d5e6573dbb6041392197c69f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 783e5b2059645e9ff42dd1610139af2d38243bb0e44d596a8d09bacc01bb19a2 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e880880f3fbdd5997e8ead5882e2baa80cd664d4cdbaef5f9bf0913d044c2dc0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c89545ef0472816f47b28d9997e23e8ae404732fc0eeade085d4ba1e2646dea8 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 309d31be7aa4c650b6d0c015edce849ac520edfc2185920c54a96dc191916848 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a1779f2bd9142f34d10760bb1518617a426dd08f2481b1b0557a06448c93dce7 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1aff0898c2a5943d0884cd4bc384da2f3c852f2d2a89403e22fa565278de6618 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 004165bc528e6f2fb79ac1fb19e472e15a8645d90983b62f21720a708a212f7f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ad7692f561fa7a9856fd789cb4492bfee22277fa87508dd0ff8968bc13d136b6 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 827ec96fc87518a4be390a06b933e2c1e1a9253925e741057f9b1ddd683867d1 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4c5ef3d559ab4a35864f81da9f36dd407d5f5af077a366c98f7928cfbc60f69f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b59868a5547161b58f6fdc4a8b781a0f92f0e5ca9e653b211ec433b9c4fe6acd for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 84d051f0570348684ec5b81f63a4af2a9fbb8420ba3a63d64211890fd77570e5 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0a689418be8b1fe4344f843b5c124431c895cb075cb777f0b2cbd7953009fd4c for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f4359f4839026a4baf5199e18e98bd20b1ee63fe611ef92f7a8a33a60742736b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a51ae9d9f5924b2bb8976ab30433e38ed5ca4993c7d75d6d4318057d97136b30 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f1941b402ba23fd0065e42efe8c2154a11d5879cc1bc9db2731167044b91e427 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d906c730f3faab5dfe4b3b3110815f31e9e71f9b22fd1785777b4fe2a2ab7269 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: bee0f87c36300de1592fafc8d875f15f3d0e443cf1bffb2678cdefad7780b3c2 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9d5816b6ac7ae179ac662fbeb1c4d82fa67c415c94908428a661e3f7353741f6 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1827987b5f2f6995a366a2ad5fd44a4e4fca450d301bb79e74fd8f531ee49287 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f6508394c2cce1fbe467139672bee0a65c8c8397ad16a827a172adc6de6e8cbc for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 98a92c3670ae7a78d078a1230e31b26f79546fe3175d01c1458a0111e82c75d7 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b44db31d3048398b6e2b9407d261a50d86b5c01df6f22ff9fe0ff385fbc98a4a for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 32c1586694355c0889474943a94577d5aa854aa15dccc0b7fb7a029264bd7514 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 174a30d533fb9f2af8859fcfe1488a8f24d7d61c9f80fb28637886004c04597a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3dab0a452551fe3bacdacba2df72c4862bb48b395ee94510979dde7b66c20cda for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: aea274e1473adbdc095902b5c1706abb02f2f7fb1740320b95506c6c722bceeb for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4ff4b107b386b5a1740e540b2231a168811bc2e27c9ba50503d9f7e09767beb7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9f6c9801cd7f3e89f1d9589c5bb52cac54a1393787c9391b57d3907e6e3bfc4f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 00a512e05b07071f7655ad5bcd969205199e3e05856d5b65ac26584c82d0c379 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a7c8c319c01247ee28bf77d84fb04d26c24683ce9fbaa1d50f84124d2d94fb8d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 55d546773782b729ede32a136a046301647a4d547dfbc634e3ec2105c37a52c1 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f47a94df6cd6ca7f4afedff8bd89a52b98364206f9efc6975b4b1f6aa764bc0e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 22aaa87dab05005cf219f66639afd203ba347158916838e1a091e441e57f5eb3 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 75db92cf3db9743e8243deaca1eb9f0163dec97ec4a6398398b7ba6f63ece4b9 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e59e044e8e3922f7c0e75fc7e571758bc22efe30722df613d13dd1880b00ae86 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: aa48da6548b74ecc0649b4bb2450e3c316a6333feed7cb4805fe2d41472bd9b9 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d334783543e734884a20af3014c586644895ed9b6973c7a997b5034f0ff89743 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 150b6e2fb66011ead9fca6a94b562970dfd7d4d2405b74c07af843ec7b0a0776 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 770b4192d6a3a341c3700e88d841cb9184167a1455faa8b57be00df733bb7019 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 637f8ba781c50299fd8dc8fba9341b2816f1ed3dde2d6b6d08ae0dac0bfbefb9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5eb4f4c50a132ef88efec641de06b8ec5e3baf40969055497eeb84f87aa049ef for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 620aa817cb66a6e5b6af7afe852abbce99451c7604a7936e32bf56b0ad29ef66 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2fd71537c0404987a0bc11e9a5f44e46297adb91bc710c77235d789621a4906b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 60d57019952c33d117e31a37167c5004419bbdee474d6e2696e913ce9c8bf385 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 89c0064521a77cdece8d37870c540de4681aec1fafe9cc794eb3b9b443907621 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a08605c0e086cd79142c63a43436ec7a0d2507b69fa87c31f100192c42ad30c5 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5c5a0dd1c65669387de45e5e9aec159099bdb8f4d3f39b42a7600db711dbf1f5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7693405e8a561206ecedf411ec7e0fd6b2db883e0a093cce93c35ba37885f4cd for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3655057cc2a7ec0d5066bc3520778e0235193fffe60aeb0e375118e764e01d06 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ee82313a6f569eab44d222f6203dfcec33e8d620f970a1786553bcf136c40c6d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 76f7976884442062359532481a0d26fd5750a98e6bdc747b46f32fd5a99cab82 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 63bab83cf9c9b0cf2d77fc6fb1c9190403eee68ee1c73bb7324915e6548dc8c8 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e3eafff798a4d67a9af34ef392480edf13616692af1e168c631459b20fad43f2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 93993c0d9fd080beebadd6700e368c9ec656e14e9de53da56fcd800614929d85 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7848508ff19df405b951ab2360711ff362e6eaad08ad1eb5a9e2a37a098bbe98 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: da6e66e474ace192238b4eb0342a36e1a82314396f9c9f5854511340cc2641d4 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1eb2af19ed46d6b12fc3c6432a5498c2eba7e21792312bf9b2566d27e6731b9a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9a43b4f033200de18a36918d457c0e2b80804086f3982f9121d1b1fed5c53bc3 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 10051ccacb07aa9e97b48add121f23135f198da2d56d1f476104d675eb156d86 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 811780598c1105d508cf914da381d501b2ac98b2d3e3c58b3b3e7fbf0a800876 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4e4f71312164c864279659d18655bfda72aa9ba0ed4a65c8020655506d11b986 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0cc326d7ed3ab9ac672f90e6e8818459e129f71c08de1c80fe2b8bb85e82d537 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b61a352a6ffc0bc0a6de31e747a780b08c7c441b8921a7dce5af3530b190e12e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 788d1cba4744b73bd19c8f450aadcbc74947e35b500ea53f52166a1f70e2e87a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: dad77d6e14f9fe3e6cb2b1406b510544d01f1ffceb37cea2a20d7243bf6bcce5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: be3100ab50a2c9ce46aae9e4a467adaafa8655fc99a6feeb96b29a6683b1eabe for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 46bfc62458b0590da6154c1988a138c143a28f979e6769e52fd7f45c6a058ce4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ef8cd23962cecc4d9b80b08b5f982129ff3511170f9dc962bd746a55ee1e051b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cd11b5bd25c208d279200fc370ea62d7597353852a0f6b4425c9d949b6f7b0ab for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ba9eba61cc073adde6458b75e0fa95444cba7ba586c30c8d57dd585397622eda for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 066886c4551281fc0cee4f5dfb06f802d08bc23e05ec3000cee610f0026ed27c for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4e4f5fcefdd255b3ec44ec4d8f0c6cf9cb8bfe39b4d2c9c31db2532f10423b2e for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 429f07bc25e201729e48a9b83cac8aa10ad0860900a84bdef815571e6691db42 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d4d68f6d402f4f199ebb099c4ecdcbfe1cd7a5756a91009ca7c3ea9e7f27aee4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 34a84c52c36846c8fd218957beb13013acec41b2635a071e67df16c5dd4e4f99 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: fd29abdae59885fe7d469d45456e9ff6786daa261b361c8e067c67387951bcef for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: be872a7c87d73ce383febdb67dee545fe9500ac7417dcda7db4cc5df88cd2452 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 24a24ea17225fd3ce82501385eb943f96818d80e92496885a7e874d54ed2a569 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4dc3c726b39b0e6bd4158663d002ffc517ab3737db6559202d722fc249cda7d7 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e1a2afb62d9529ae34bbcb3ec3428985070718680663f71e741a4ab43287e561 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e367991a513f33732daf30737f51a0fa5054d49faa119adf0437bd9a1266e403 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b993260a3bc5092f9e605077a90215925e09f1b5345ba17e1b56ee3cb5446f62 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: e50262be452a7440070e7501144da656fc992bf6cedad9b1c732a64444354397 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d9d6790dbc2e2849bb73ffea8be68f17d64247f34d9fb25e13baa0930ac80d08 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 85b3fea2d786022729e5d26f1c71fb83e80d6a83fddedd06a729d90a6ed9ba9d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 223ccf587e962ddeaa4cda3bfa3178a76372db78901cf462ef8016b6b432bca0 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: dd1dcaa5e40987f00025283c2746d8490268e7f807c4bebc8e2414ea41240288 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6a5faf977ecbab003f17b684be1bf3490f9a85be9521f37a94f2b7007d17a8fb for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0cc28ca9d7bcc410ddf4766d13d659c627e49660ef75e988240531bd66150d5f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0cd3a1e495b5226a069190d32eaeeb4e713d9f94e91dd587925f9662db4f64ba for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c88fbeaeaa6109c520178734d16d84fb29cbc09117463036e7d7c079c40ab052 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ca4284a8ef0eb51726316b8880d581d71b3ff0c3015120330a65d0b3b1bc5cea for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 170024e089c22e1684b1f3d2e548e543db01ef749c08bee77fd5f085588ed766 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 33ae9cd04ad5d500629e2dcf5327b76fc95d3dd665572a04356dc3f8d2a1c693 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1fc873ceb2ba8ebbdd4478c0253842ee36b8b38106d5a0884ff3ad8429a986ff for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: db148f0a1d11933cb5208a927cbaa105883dbfa047ac7acf88abef9f6dca03ba for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 98b3cc507223d7078fee438fe9acf6285da0a93fc31a691a1fb2e04aac7e4f3b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c1c8438a63d327612eb42068566debf473e287052f9c59250635a0f0e4607685 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 466a1105259798440d2a228fb9f103ccada8e0e8ff486d80eabde665cace12c0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f6f5686c1e9740a4f5959ab9341d17e9a25538409a05e7e8b699ea29b97ba4c4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a4b68126886536dc29ca7abff9deba11948092b7d2d373c999dfc60b2b39ee77 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2c0c3b3b88b2ce7098f854b68846550f4c48826f97c0763d3f40a0ea901ebea5 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0f85346d159a0b6e6c8070d30e11daeceb83386bbad2b7bdfde0b7a1e500e1d7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2d234b436b1fdd8718758777bc17d1391f449c8b02493f13e1e75126cebfd130 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 14ef4f1316e7ecf19159da7e17a6bb90b1a96dc56f1a04eccf0aeae9b47daf44 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0596416e0104b52f3194eb1027223a65d0c473f55de3d2fe7d3656e58ea7152d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 51acd3dfde27297657c979c52a25e8e3fc9144c3973fb3be708ae1216a85042f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 273f9f28de2eca11923383d59d3edc0c94b23d87cad4366e5e2e278d5ee95445 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9a0b61e25e99997b2326eb9643e90394130c20e076e7340a3e760e0d67484fa4 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6f6248aea788b136572f1609db56b7944a6b30181710ffd3da9b431088b8eb04 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 61139af45aba01bcc5803922b754a06680e8681cbe524d643c1462805475b8bd for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8426c194625e406023d9f4fae506f851f8e4202a2e819904591d21777c1f2a5b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 0c77d80750399434370603fbdfa0269f084eb5338b06439a3eed03580d9bfad8 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: fa75cc550c2f48fb6d7666bfcaa07bfff4bf1000220e883fc26df6965f20ae98 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4d001fdf22b4286f7f56b36e65275a2f19b426157de391d9fb90a87e74ffdf39 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5ebc89979d570b5e0502124be250a781d77c20f0261cad69b349751671a064e3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 50d3e315f43e48d4336b6231e93e90009e72df1a3ac6f426607ba1c1d8c34a68 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 1ea356711c317129b23682c9d39c8fb4c08cbc9f0c3fac55c61dfb5e964c35a2 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: aafde039c59e509121567eb77897bc1435dfafa13f09b949bc194a97707b712a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: abe78c5aa417129c3096da6d8299dd53146654bdcba382901e3fc4d500a13b3c for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 9383ff8656ba7d65cb8cc170c00b8b47142427d38dcacc72f9df7725f3a26f35 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5ebafa7244d6bb97544ef8787c375dfb6e11cf4aae8a1ca7d4131dbbeb9d635a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a27a3217502336686a88a7f6c5a3b3bb3b6930e14985f95f1b397a42d7583911 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f0b424e5bcee380fc2b86223eeed7780c5621507ea0d6aa385b1519987daaa8d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 3631c873c8e9f9ba5a1f01e575010773b92cfbf4c9e39ee80e81e674756ee9e5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c63134a6830c15270f2f92fe3c4d28048161d86cb4fdc1fb8cabd1a11be1f9b6 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2cd10545c9b5834cd62f1b4e0f2356f7aaac352e270df9bbe73781dcf62c38ac for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 18966e8e1731f94c3843d2ebc238c71120cf47d045aaae67436147b29e443ec1 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5cc1c74834f8961b4a0044f3c75054d43a574f8c858e93971f004d14170364d1 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6f5b1ebc6c9fb584587f715385c2c2eff952d67d0c9f2806d729955892c03f04 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4be64b018e3abec044931154b6e85a961513c3ebb8ff2fd612cd024ee3080f3c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6f03f4a24f8e9dab3774d1f2f2482987d15719ce44a311916e0932474f3620f3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: cd276f263196200921122a51b6eb074134bfca8655b81aefee86dd29ca8866bc for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2866e02c791611968f15b11db3d5955fb41e8b42e275c45f9d0e5d7b65f356b4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2c58d4f3e4cdd758df8b1b03f99e76fb8f1d9c5d2a3d46c38ce4e08ab4ea4c99 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 680313599182bc0eff3cbc963e899620d9c860fbde7167defd41fe854f816b8f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ca5bb1bf85f6b54a11ea0a041c23f5965d9eaf516d3a5361aae35454274d76ea for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 5b1c8c39a2aea6f8d662a5f2ee9669fb460f6311b121c836d8339fe95371dc35 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 6b86233b36dfb23f49a85b14783133f49371c8739ce0982e5f60573b6701435c for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: af3217b0d949d829c979696ead0d8b5f9235a24c0673b52356acb0f1be7a5043 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8b31089ed39dab9a4e382b281cb4acaabc1b51becb99ad80050d0bc6c6213c13 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 739b693389c1353061f268c3922c807fad5302837b911d8e2f13e2661e395ccb for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f8f060c78f31eea2657d2c1a48a6c97bc88d05d08b071be915b464c8bcec7852 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 60ce0088b08dfa73916600f6d4f3eec7a9be2ef262e590128f7f48c3a0322177 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7c69d0c9e4583ae2edaca87e8760a1d45940f9c17808659bd363c231bacdacfd for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a4719b9c29bcb6d136903f2cddb021d4b7dc597037e9d0b53d5824886de8aa68 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 4eef0429bb4ea7568421896baa58e3ae823c7867803976c519ee8183f8aae745 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: c09e5a57b34b615f92f7dc0b80525445ee43627833346e0958fd5806634fd2ef for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 2fe3d342f9bead8b06239eaf28f6d62919579ebdf9983d2e75966b1ff0bfc693 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 92533967c6e5778ec644206ad2338ee369667b505a85bcc0244bf19753e68ed4 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b745e2d4b27e9d21ddcee378bf5c8a5a48266b421d35e17b0356e1228194fba5 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 917e6e708215bdf539d68a078f63b17ea0c8041a36c33f4086698bc5450e1a31 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 29cea46d47cb1ff54681112bf8f89b02070757f453852510dd02d9f2c85dc161 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 95b7e9093eebcef8d532e09784317f62690575c67468a11fe99f57c15a36d310 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 81f7d7b23647f2d275bcc15fd3c5961ba3cd08b40d7f29dfbcd0fcb104e5ef9a for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 038f7f15b57f58b6f7b3a5184cdbed38a73ea774c6f62fd1147a46c0d7185c69 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 455b5dec9ff8ee162daefe8b0e469aacec45f7299de73794bd22131cf6627e8c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: b0dcb399faf82814dcee6bc4da3d8101d364253bd1a5464d7e794751efaad924 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d75b6f4db21a76636b9fc31a75f0e2c2f032176a9c80a0132b45d1c9e858b465 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 52d8326a4b8853cc687be20b82117527e88002045a7a585e72873657ca9898b4 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 971c10b52eab1bc32266975fb22c7b6a16fa89ddec488fb0881d07377a3f076d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 096c7cdcb9c7f3a5876b180ea9047fbd63700e55a160b9dcbd98d714ebc5c9f4 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d7f42972402af6df69fb595ba51d5cedc0ff044e13b89b25835ff45ec941a73a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f9f99f8303272030447673ab12edd94a414ee2e9449a8944eb236b5b840a3130 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 38c620f1ab9d5542a673f8bdb9550de712293d5875e50e76281230565ef6b598 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: f73e57563e78f51f65684c889753a419d3ba4a3df6280e69b29643ec4810ae1a for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: ff441274f5cbf42abbe6731c63f7546db70ddf18893967972e8d914c1a56cd26 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: a243cfb60486a76a3ea64fe835bdfd650b80a821cd9c3e1e0e5529b03ce5ae35 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 26786aa45c74c75d149501d8b224543a81a91dc1f9d772e33987c5294587b7fd for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8cb53def9be24a64ae0616711ae2997418ca44d164825f5ea08d4d12980849e1 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 8a4a748555d8766983712df0a010994ca338b35ab562088b7c376e56a5ff5ffd for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: fb574bbc4bde0f72a304864014a055448440b6851297f8f8c7070e549ae8379b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: befe9ecded4a960a4b9f9016f37fc3cd1aef262d0b5063a46329e959f5e2c150 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: d047019ec6c38cc1ab9faea9dd00189e861dde382b471ca1d8aa75130c949dc5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: eaec189511fdac01b79fc2b273c0eebaf0164d0866e9b03c44dba237ef3e0077 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 7e043f6729b892d1ec3bb6e58cf1cc51ba7dd690e914244b7c69b408e3185e91 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:58-07:00" level=error msg="[Error getting Transaction for hash: 09f12306e49e9cdbed6b98f42722dc483983aa59c74838e400933d4e3c2b25f2 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e87b648280554f2a82405f2af6cea628fb5515f516611122e58498cacfebafb0 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5e2de9e903d303f71cd35ddf84903d5ec74ce96c624c01c90b96fc825e374486 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f0c867ba090fb31836b61b3ff24b265064ccf0f682b9052b071bb6fc9cffb7c2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 47e7e647cf423c4d2114ee165fe375a0a0a16dc4e74a6bb91b53ac4c19107a07 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8bd94f4aa29d0eeb6edea527b4043aec1216e35bf76bab0b8c8144837101edfd for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 80db63fbef0746ba0f76cadad8b54aa1942204e84701f1c782ec50c336aef868 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ac9d9af86dbff40d184c5ba884c4681a41e9cb817685446672ee8110aacab6d6 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: addf218a524420d6396ea23419ed1e3ec325092dce8a8a99ea08734a6b011a5f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 589bdd81adaaa3afd47823c951a2ce254888b34d8db2a1958b054ef31d859486 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 26ec481fb6007555d1f7876234f62809e518dbf2586a33878b3d1458f74abd1e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 540193f364a59d5d656636fb7d2ea295c9397226fec1d9df92d5b2ad7744959b for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e5573b61eb344471af884cfbce64b2193a6573c56b9f8a9a05a6c0219887d3b3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d4a3986d448adfa07d1397e0af0c0a8504a63194137227188d060f77947634c1 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c2d2ba543f63f715c2f9316a3f6c4d67972359ce48828f7a767df717b3606076 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a25ce525052397e92362c69ab1b95f4d25821326a238e5b7b9e0fde89ad90474 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9753bd3465f849153eaa73e4ace6ee1b8b19c94cd9d0cd7550ab9f0c387a2b09 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3ca84914b4fa4dea25a713aa3a5a07d7f7ea968ec682524b32d4cc89b1a489fb for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f4eebf85c866bb7911977766c629e103b827ed46ee4a415e0b41a47600c284cb for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3a450afa1b6ff2e7601779f0d89824a3065076de93a53465e8699374f2fd9223 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 27f2a9e8bf11876710d955d7643ff24ba003f195c62ffac3e107e3e4084da7ac for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 65a8d7666dd626fb9f0b9d07215e9f9e7effaa60236467e9ca90d10d3e182a98 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 18382d2144e69a282c99d4ff2fc6292d3f77238d255d5ca3793c1490f78ba1e4 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e23366a024c7eab1531f159790df4769d91a42c87515797321e0c12f8ab3de2d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 294250bed2e09effb903f6d327e98253961c6dfa4e91d78beddf6b35e65eda45 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 23250c02bd44cb1b8eb8e370cb4baa19f10d7308366101607d157968dcf8fbca for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2b20536c91e35f3e7a3373f1b5c3efa7ce0ec6bbecb996e14e84f48679d8e0f1 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ffa99f53185c93689132439fabdce421d7b4f4187afcea3d986145abd83dfc21 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 58c56ca2d1e2f354a7f08aa7908ef0072e6aca9f0c4d02d3b3619a416d38ed79 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 907c92e90ed7ad84077d42a5da9369772f1f006d1df7db3e3a6a935540c3b94d for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: dfcae05c0d9e082a0a5135a4f3a4fb95f09b3455018fa0e4c16be8d3762a5e5b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c392e925b3405aa651f3ae4f6ea4a41ba7d631886cecac5f10982e70fe334421 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9cc7513e881593419efe91291e19de4d3f475a9b8c2bce2a74840d771620b772 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8d41298f4d84d308312c2d36ac3ae02b273126fe91aafbd8ca991a02fe211534 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1be7bc5b9e31e2954f8d488440b90dd0795e4bc051170909a1398e7526f8f828 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 34214dd195d3f26c9660be27fb7face88cce179e3b11ab5153e129cc423c5e7e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8595ceaaacf44f7db6ac96819813bfdca75539c10a96adec893afb7ee96c519b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 59998760f82f4e86e10dd8aa754c794b8883b79519b887b0100e369fc5ce8c37 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b276c51efd4f54325237c906df5ce4787ed31156f028944bd1a27ad805a8d51d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b22f371f1f4bf3fe6da47feedddc2031afe05854ddcbb29cdcba7758268855b8 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 64b4b75de8091d4267c72463e45c7d1faacbca6671f7527c60c7dc0d9a898a2f for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 78da5958bb2e493fd7f4aa569966afd6623bbbff786240b201378c4a354b9c95 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e9ccce6d086fd5397e3526041020fab5805af1b24a2fed21fc113015dae2dec4 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3bb43f5923aba96a1a6697a49c32bb7ad4d68784262fac067a4fcde4d6c48d91 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9a0174b2d7ba2c6e10effeac842af0776e7acb8f31585c75dd260cc7ff88fedb for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3fa987be976e26949c2479deac4c089cd78e32d7ce12eb8c9d799e9a48aa5087 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2d7b0cf5cb2bc669949cc8d69e05123da33d1a79f6a3694af34a3c4ae6e32b1f for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: dddeed132c17e4c0f1f575620a430c8909eb90419b2e72f72c0592be963cbde4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6f2d65d04554e9db45d7e2d34c1da5b9d46ff41dc8f6c59abe708243ac8c17e6 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8b83d00aec4ef90d460e51e0135f00c8b22b686d8d55e0e1bf25389ef13096ec for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c0488f00402f783379ec54badd72aaaff3dd1c94c8d84d0d3074bab8a1c7785b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 123c6c1ab1b4a21d0053702a0c7057f45a89b87074bd1c62ecfe56c7efbbf89e for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 851fa1be2821ad05e069a1067a10bdc958e5ba9e9ae2a6e2876d020472a60588 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cfce2c3c6592e1b8dd14675821dc12834b3c077860484966a4e65194c66eeac5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 88794cea84e3b036117e16d63e3ed4908437ea848de354ed49d1fa44269f8b4f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7d82718d6cda0f407ee539a1cbfd1397d88e3641fae2f2296d215aa0e6e1163b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 11547f1086608adb20f3c9b59229c819df97479884b163c193531b865ad2f483 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2e3e61495043fa47af9c3322017dda7516ecc57d0c074d0441d3b5e5f1e786b9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 570f34871ae8164568bd334d329e502ca93240ca7dcbb39ce2fe37e7343f89c8 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cb76016fc9c1a9300cb989c347eff42551c99086dbc2a07f79ad823272364e81 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f3cccb36e41ccfa6d90e35746ec7a88043b37e059c62ea538ce98d7d57bdff12 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2387cd58ff44c3ba3deb769a06427acfdd245d832b7822448eca7f50c4106da1 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7567e123e08f0484ea57ff81f426a589e71d7e2cee214ed361c5a9a178861c94 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3f2d0570c3e17b36238182d17545dd5345683ce2ccb5ba55356d1a9acc8fdc98 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 44108f66e599efc92084757211fee3f0b6a7175830806d7fd25d17298f5910b0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0b2ff96d0699564eab41239325c79c76771098b9f101df61096038c463189f1d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 277d01c2d418e27e9c607034da3fcbd7cad7d61033f83bc2ba109aecac1ed7a4 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8fea85162aed396ec86759fb6875148b0568ae646b8263024b3df55a982fce3e for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 76730bc6d779e13f7d1b7e3492b074fe5850f9c72ed3b561f5890923d0146922 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cce6c81ec93df22d81ad9438f2884df212d9301d52f0088f7f4ba008adc37456 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9570a50d8d33a702a523c75fe57914e435e4c309beb23bc8b79dafd7a05bc280 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 451ac7f03a7fb6db90ba62a0060b2778ac30fad406b01b0e1d8e4e7683e4ff8a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f3ba952ad6ee1eb25f2c3971402c3999ddc0ad90d4eaf735fb5d14f9a3910897 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 46581e66f9a05c09ece20e66b249c6d818d0e5467481636e2bb3c49b5d70fa22 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7caa809b09ab79ab76d31dc5f07868df2900b4fb51de29fab72f82079adb822a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f91e7da42dabd05d6bd0cde8a61b9e3fbafae742614e03b0a500e6f92d6f75be for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 86456105ba11cc3ad6cb517665b2da383e13b1a0e22ccce01fd91bab4e185ca9 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f931abb2d8eaafe163be4a8567b2c735b7bd50569f71020128f723fd8b4df002 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 56f105a6f81b7eb889c9b5ecf3793fcc12601ae9678cc32635ffb1e19d98e911 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c733096709f849d98c36ccf7e6962ad37993f95714250e8bb0fdd585baaa089a for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2d04eadfdf9dd4f4f8c8a86701f25d1ad95d1b76eeee2f4841424112bab01319 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2ef722e64179670df14e48392be079212c3198ea565eec2268c62d0684dece71 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5a09253a4e8d981620db5352003dcb5a661fef0fe6fd03b95a3901d71846569d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 50897583ea8fa10f94f15149db6b4819f14ebf42cd390cb7c7ea0781b8d4c56f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 132b43b5f80d86c76dea5ad643ffd1eaee9e8af9934faaa36a1a173010262e32 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 70287dbb386fd17eaaad39bd67da7e90e1a0b81959e64e4cf6a50b6a517493bc for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fc094e75abeaee6129fe41545256a4bbf2f6d0c73ca7c15cb2a4919d0ed3bfb7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d1c54db4bbfe6b99b3d55141c99f43230b33f27863ab6c42d929d83d726e5bb6 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: eb0d5dac96e674fe7f816c81d6161add9efe0178d48d6e121f1906513aa5b311 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 279110f9f039cec1332cacd7f3d813d44e5e2d798d1ab593e495a274c418914f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d67bb57ca71738ab07486c3522bedb8abe30c41408fc90408eb98c40bf12a685 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 28b86b2d11d9cf8080e443f78f41ab0ce51e2bdf4368a06541200f4a85be69ff for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 36147cd52b7ed9514446003d5f46f6b17189f897cebd0d900289e5014efb74e7 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fc71b39ca32383fdab0ec0e47af05733803c79b34e6ec6d17f0a2aacc0b901a7 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d7d51d57dad3903eed9eabbb3a6f7727a546c3ef19dac84c1ece988816b0bfbf for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e414a3bae6e12831dd267ba4ccbe25070d949cf437e2da6315983086d93aae16 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 70008a61313340c85d950a4c909a335a3568b02b82f3ff581c35ca19ba05a8b4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 14f676bd42ddcb2c39b734cfb006b2f27a122d7baf965414b0f32421a79e1cf1 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: eb163a6c6266c90c67ff031d5a52d01be37611e4e5c0fa2d185d9d740eb16e4d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 75afd065c3c8f5e61cd8e7068809e3125857d59da627b90d808f4850a5c0e83b for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0d4c84e9f3184f4fe340ecc04df9ac68ae2501431d510520a486a282a96a71be for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1c83dac2265f900f167c09e20aaaedc70c7d1ad57bf315aac4f147e9157920d3 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 187495114ec078ab990b38821a897d03602676819905e1722b14356d77127365 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 70873ffe5a9a41568a022f511e9f9309ad28f702cb686de2909a0ced897e4700 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f015fa674e59def947ef62fbff3945cf8233c2cfd3c428454eda283f1173b3ee for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 778f6c6e70ef3b0e82b45c8872da8bca9614d32d5d862c50dbf23d552b3f1c36 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c13df39a32852bc82f89e70dec1796b5e9abff16ff390f98b499b7ce5b8e53fa for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: abe40cdfe5d7d13c9e3e837305722e58e1e7aada7b93951eb9120e4cf1f30434 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2834355a02337290006ce895cfcc5fb82890f1e56e631920822b13071d703b66 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fcc1adce73b409767fbb05433015f0b11770a0b3a3ac92117603772597e2cac0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ec4f5050d4f1faff5e2e4cb11edb0b067535284ccb75c365b86e6ee4db491062 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3261a075b5d349bfc2b1e91016d4aa05aeaa270249eddf8feaa8578aad99160b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: efa493f1701422745cf7b551ea2fb12d2a10f5f9ad3c7be6ee517ae339bcb12e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 775043787ca2d2d9d1785ab721140cef81d493e2eb6fea28e2e29da6459a3a84 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5af95c56158cc96c73fe68306da8537336b0a9dcd1619a44e7bfa7c6a08ba700 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b26a76ed7d0b9b004a0fce16852bfca3c78fd645c2e55336307eaa5143797b97 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0ee8b6ff2aa7f25445a853dc940b63cbaf609ca217c64fa92c3aabcd60a00808 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 140f37b799afa5fc0eb4f127d02bb3062ff0a15ae1c2b5f489f8711453dfd24f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 46482943af383bfb748ae8edaa8e4836575620cf02d2245c4d26093331130a8e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a844a31ccd287ab80946214aaa0dc76e1742514b90e02e2bc1c714fef0635db8 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5e3d7acc7125d7a540a8767b31a5b9179028080fc0873646079ce1e22361eff8 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 06523d7a785c9c9177cd303372bf08df38d30082fa375affa678579d7b41f344 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3188f3a34041924d09c53b56155221b8030353d21eff354d8c0c90aa100a822a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 130ba5bb6698e482b79053d4bb52077ffbabc1dd2abd2485ee8e6d6e4fa01a4f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: daa93468b92884f8bfa1058a5d645984be787b7ea3585c4236461930e38fc94e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 105a14c2c5f80c0d79c09eb7783cf10822bcdfda68af8db2e21019ad731bf70b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 744b1d9434eba0a9684cb1911a7fa5f089917875c67895ccaade8fad8b87c177 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: dddb0dfc562edbd1535a527d9e88b348e0c86029db4d36ae9a588e86df39ec7f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4220108615a6020403c040dbd91ae3ae6f6159121160c73bfafe4c4ce668db0c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 54d74fa56bd080469641e94dd1a2ad1548b086c9c38d7f3d022cee91224b61ca for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: aea97eb64a35f2510ea4156d8e60d1bed239789e9d2600c49fa220c12368fd95 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 732c437edca4f819e3a8659e31d54530ad7adc36298f7961305df89ea52eb343 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 486ebbe7e32cc7bfbf3cbca380dda0c9fb4a5a42b726c24a6498c7f03e5d1ad3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6bac031f807cf009475bc4b9d5c78d4fd7d51f964fe41c89f66cf610ba4fe2f0 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3cfee54e5527b9266df703e7ce2bfde82169a51185e5357caebac61abab58e93 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7ef10226c37c7ccb759f936e14bf727faa6de67685db6a42d1c80794ff89a2e3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3c244c8fd6af3b2071fe629bc518f48446cafbb4a9b71eac34954bf4b56fc2e6 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6b0f90f5bfaf19622a689143a9ea01506629460aceaa0034c50a1272b6960016 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 83c5039c33ea08c06bbd40c3ba97811a61e5f2a653668269febcbab1023b083a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 824e6348025a7aefb42a1608f7a54ec360469dd5357322a07157727a921e850b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: dc85bb1fac3c07831a1b4cd270f705ea74b36f084bb65b4ecf63de07c7272366 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: efa98f11d89d5edfa9e7ecc319675ccd3d9dacc622e1e57248e14e26332bb00b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: db29e073a287bcadbc794ab3463d818940bc4faacee8e19dc5d754079de20f7b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b9314a3e157e3d558696f084b513fc15dab991f09c1998848785a23a2f0789c1 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ee271a9e0be2c81413c45ff83e3a26571e7d7fab1fe0066064352b0d5f1d0490 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ba380d4dd9eb61778d95bb5d85a515f77932b8df4a874f2e341b53ed4591a8ee for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 37588166853d26e476215fdf39c6fdb91a82c593dab2edfeccdb1123547487f2 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f2eb1c79a394d06d57a406cd9fe7b4f4a95eaeaca13e1d52dbcd5f446b8e32a8 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: eaeb483bfddd3f63e44fdccf751b892b28b55d693ebf9c0b6bcf7ee5c9503894 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5cb5c26024fa0713dd4e0fedf21b832ec2fd3ee4aabbb8ce4d827e51201b50ca for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 48281ab951abce4e568d55729aea0f4995fa419c043c87c2fb7d304165f14ffa for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 564a4fe7d0bf2735b838263fa1062abab7d2d77db1e1ae51c174794b92068359 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0e2456dc168bd9b97717f6a3f9cd84cc2b9cc3a133aa2d73f3ea5e09cc458e70 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 509d5797e4059ca5353a50a092370cc7d51965606197ad72a943fff4975c64c1 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b051c65e3417da4ace71cb8b4dbf101b1ab3210c5dd6ab80c74a2d07e37d1102 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 97be1929ff07c0541c9ea179040015934d56331de4dd9db9db7e4088a0c66716 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 581658ff570fa4863fd9e11b2b6ffe6ae2e7d993da7e6f8a118778c69aabd215 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5553d983f41d601c21b295e71d575637f59b4bf8417b9f92bc9f4039365acd73 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3c7e1769596ed9c3d34a8a5229449c94ca9136bc0944bafdf81d0dbf0b8a1dbf for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c1f7b2bc7aee2f3687208283b8992c6b308a491611cf652241d4a76607249aec for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1b3f7bfbc89b6d2daadbc550c8ed15fc1c89fcd7bd85cd9ef1cb00b93351bfda for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fd88d1f94af1e1c53d53b65a0e27cbe3f06d53bef2df85c6fb3d09163d0b12b0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cd26f7df51b685f32f34470f75f573d60a186b17bae19b0be5c16f85e1627842 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fc0091ed9ae84ec1cf9f542d3e7ef3284f3eaf122fdb8d7f800b1499eab7a48e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 977dc550ab6b76774bd6e5605b98b4fcce09498854ba72d1cdc2e5c0c6e8981c for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7c8a9a6a160f3b0fc5c1d86fe7989e05ccf992cff74386ffb4c51aadee27b074 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5a4fe2908974f8c4035fc8b4749b0e0a43176e96ad5eae758ec260e090209643 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 92f3df951088bea567c9b256a16c14fc27b70eb4ac62bf37988fcc33198b99a5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2085cbb520bf4a9e2c9545ab88cb2d3159d1a07e2d3ddb229975a3393f09f812 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c4a010955e52b0387be7349f89149536fccee548d73e9fb66ccbf5e53243b9ea for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1897d65f2c119de3a9803fdd70d3ea0e84220add03c72313b1cb9d1a74cf4e26 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 049c025ddbf486b390f825d6aecaa3c50fc85c139096c15df9e137ea33f30260 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 263381b5813fb4d8365033faff514985a8f0779d00d23de6c22b8469a382c104 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f141f07593e45524b50fade6133e92c30afed1cca29d7d75ab56945729ab0291 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7d5c6643fa24b37a2545752adb6eb54099086b34ae5a02cdb930c2a5c74707f7 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 53e56434f1bf8c54c2365fa463494b1166ad4a623025d41fc38005eacb78bd24 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 980154df36d881e007a0211a82b2f1dd210a108321120cfb0286a4127572201e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8d4ca88cdccefbbd981e44de03d251c0d4287088f07750c7ebaa4f9421eaa8fb for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ef5ba25fe934f2b183e36a2a9ce55339109752760f2a1745b3e4443de4acaf2a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b5729eed488ee9af8bda5770239eaa02eed75ccd57c26ab7f54103d40c8687ae for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b34c54d143dbd2253cd242c2e2e74fe9b9cf1459e6a712d2aedf81a96c06aa3b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d36470b4abdf2020bc74bd93217629ef3a2ec6fc8e7a9cc9bfea3c5dc7576ad9 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4d23fb3a17d72bff592a9fb9769b43ac45c57c758dc0308d80fd18ec260eb7ff for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 26046d8d5a20e805c78aaee15cc8a2f9e356f1a8a45e56ab51f52c884cad5efa for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 33c63f070c3f8dc6213ce6d146f517adeddf4636cb93213c2d8dc9c38589139f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bbb116ca94a8af43d173e18fcf066f2536ee33e0c73d833d40e17850127067fa for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 064c9859c133383a2f7a38ade2ff7a63633c2c60c2d6a840bbedeeaa039b9dfb for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e76b1beba3769fa9d7b496738d1d2a0bf50904b91ba12a70bdcc486959573100 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b9d9a90270ccc222fd0a5d91aa53dc68691b36d68e5374b22ecf8c2147fa5109 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6d8af82175e876063b40e22b300f0f26125b299e9b0a1226e520d559784e156d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 45fb630b83b8800ebf2696aab6beba55a3ca41078cdb959ad73e2112e2ca474e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9e8c00b90771f4c2d32b0a17afb094b6f9e23f5d963cb41c33eccf4531f66784 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e9f4d97bb86ec4affca86509cdf4eed080e0b39312f7643bf475bf669a2e0189 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2e867b04a8a84ba9cb5e450a65d3a0f8f37bd11af0e5fafa76051fc156cb3361 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 83d7b8aca8210a4eda6749bd9f578269a4d0742acde38f97c1651e753346c89d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 055bef361018a8c3ce5cc0de171c396db562ba5cb934558adb81bac068f1a546 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3dc8fdb18062ca5bb0a10fa5a534120cd4d2c3e52933bb7c7e7f3594487191a7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fdab96c1f40f63d5e04cc2b606545be08cafac50488302fa9e4dce6a8fcb684b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fa329416af859992b97b916eadef77867ed1536c27fb1796912f07719a74f9ea for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9d9fb4aec9e9582b556beee6e178db6470bafe3103739cc8ea0310f889237f87 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4a7563992ff70a06b6655dd5ecd052beb7f7b2b4a9d5d35bb51ef06da1d6acb0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 88fc413a544d977642e2442a61f00d28ba311326be5421d79583c4195f68e67a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2f2889d8e130f0a69cf092bb51f410497285bca10629d34f6d181be408a2eb78 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7f48abdbb70e57dd7350b13b0957a7f53ea389cfae5c619834165cb8620fb6fe for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 63e9a9182ab425d01c3deb47368a9f76c79ae235ee512cecf46cba05f88dc8ae for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3908a13fce58aa3e04e5dbcb411ced82830ec9ad1981a1f5450c54441371f27b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 01a20e5497bf9922a5d5dd4afe701a6d4015918db0f22e11f9e187b6af5286e5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a2e6d83ab595a5f4f55b766ed102c08f498272c5a75666586117b9c16c52f789 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2d109a661d2422cb8d5a68fa41d48abfda18252f92deb3fbfd1bbaabe4a20190 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d4f9fa74e6021d5aae22b90c5e04ab09ec66e877491b69662f0332ac609c2417 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fdf154ddcc2a98d5ebb46defbe659fdbd8cad107bea6cb50aa8788cfc8c91692 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 09a9ce801533d4aa99a489fd53a95df8f49c051a05c3b2d70f5e9e6b6090cf61 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cc57691cf414a2ae6eead374772bd02ddb67e09b861db76291708625a42e9bba for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 149e9d81030c230186bfe7c78a5e1fdd14568e5ae5ca83d149abc39f773e21fb for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f62820c78af2b012e0dceaef33fc56720941929c877b512097c13086cf967bcc for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9671a4bc907e7aaf64f284ac21e50493f5278f0844c919861d1c739eb786d62d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: af90e186a315fbeb06703806e63672ac0ee8001676d0b46111f6fcc50b0155bb for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 769caccd9163203107eba6b5bc3517087f2b35cca57ce74d67061d3b8dbb4d3d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 63adfad59086c90191fb0425422533d2fe579eddb471c53939b1117e89efe18d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d60be1f896347dfeb4bf70cfccff81abf290e6b7a33618827a93b85505111eaa for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 675f07450c08467d2bebf9d44cfcdd29f382b0cbcb9ea2ff9f776f96d3644e73 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 67e2100e2f77e3188635bebf8c9c9133d176056bfa0b7e1ed2c462fe4cd8581f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 21469c41f75bce19c5a7934f232fa1391fbfbe14121f0d3a368a1d3cc05975c8 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8e704313c34f9cd606fed29208ba093dbed26c17f480622813f99473471601e3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f8a70741f3d6fe72d1e9765731b859070bfb9193f4bc66d2984f5e9458697772 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 017fd9dc54f769757782ab406726c64ab8fc278ec4acab21b9d8d34d516dcaa0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 977281c9345c3b1533128af38fc7ff256a4211cd40aa2423fe6ac299cbe3f074 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ae6876c7c6bcce959b9b043958d2b12dc5a71802978603e76b64959b03f396d5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5bc9682e15fbd15d9dc7f8206dc2c22b4fb9c077e9f64d9023995f19cab71c08 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 55052087f526fdb07be28ea6c7b1548c53a8b3ebbc70f1402e1ddca6b903301e for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 48024296d1b9f7210e99791bf4a77170b52a9f457f04e40f68213de897cda335 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a8a63bee216cffcbaa3171588f22be99302650b4788fcecfe32a23c93c117817 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 50a6f3831722e705b52cf12f3ebd63f091e93664f0cc3a886e3356e23d509b0a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 963d93924aad09b297c01549f4eccea5fc7a3963d5ecfdf74795a5814170c147 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d1f47411fd6f47963516c8811e9a1749100cd40f7ebcaaee336b482f17590db5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8da3d5dcd329e82eaa7d07fcf5ee818b1c5d0ff75c114bd1a2215b3de4ec3fac for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5c3e82a4f76b01b7680b39662fa351193c2a8bb9fccaf888d6fdefc83560788d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4241aa4445790b166aac11f45512557cb02a50935645bb425618e0ca3d6e993f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f9fa96231f020165d7b9be8430cfb137bb45a37b9f2109df7a0ed920a6e6821c for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1e7c92a730a020b4ba66656fde165f4d26e6b7556884c74d35071939506162b9 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1241951679b56db00c5d2f3653d35cfd83844cf7f1928d17794eed2be149dbd5 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bb35b83b63a92db56590af432a97877ade92f897d0815d16a89162be864a9328 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: afe25e341e99b73b857aab4904e64c0c57702a79dc29e7d2b605cb7060257939 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e391e1856eb1714e3be235703861579b945bdb243c60d8b0e7574ea2d0ee2b3e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a2c71470bdf1cf401d759ff74ace7e00bd53b5550d7e165f05e623619087cb54 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4cfcf17f5ff641078f34fc7d11758c84bfb22ae8c5e4ecddd01a9d3bd4ae1c71 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1cc08972a5d4275f63c2aa3cfc27669a1de32477f30feaa38aeaaf9175d01d67 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7487c33627edfb708f23c2435b1417b2de071213e7ef240b677964909ee8fa3a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cdf1a35ebfa888f0f192d2c308fe5afe566e1437c0e7c965789a133eaaec4181 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9c7edbe8df44be1cba003ff5f30f7a1c82c3cf4a0fd37cbe3f4d6b51f67dabdd for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4a11748d70556b8d03eba74b8589695f4cb69f67c912187fb3f816cc4c40d1ac for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5b28220460d1fad3b0912829837aa4c7e6c2198513379af9146784c457ccecc7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f7c565018cffe165a288cbdfa4f42861dc7f7111f15f1cbea289ba9549635c7f for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 440016bbe9ef0bb92de14f9049220d7f7cab5386a7b6d4d5a986fb3416ff51a9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d80ca6321f2da956fe67ae1cff2ff1c87d3f0abdd89ae068c2d36f4ecc015afa for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 52ec1c63fe475602d690ea15e00523d88e511bf0f83bc8b93ea9fc6cac5310b6 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6ea883cfd86e20cfc00875021712b446253377cffbb4e536a830c3102e518408 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7cd5f38b47f59b999861f50e7a187786c0e1f73330bee142b711e743884479d2 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 264d9ee1a7695d570e3e64c4c3fec838095bb1eb32e5e9c72a62f8e6ce5d051a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f8102278fa33cde244527be93a9e26003910f775f5fddeb0dc0b00ce97877b51 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5838e6186e472eb6c5f40ce8b56f44826800232d624385e999cfee44eb0bd36a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1500081fab47165c1a5ae2661a574600038f551646b6782558f3e567ea5e2655 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 259135d0366d82a90609b2cd179cd6c62106b2c257b375f28c1e891b96c6961c for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8cec6e863d76a54642e42d780ed10fe3c84440052c2b55a33e532b98a5a8e210 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7ec49a3389c1815d272e294a6f5924ba32a7fc107f98143513bee8b8739ce421 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5fde9ffd58058f7c07d64edbb176783caef2fc4ba530ae7701fc87af0c410668 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6c57863719d9eaa9a69ac0e00f6cad1de2e8946a5dfe5b23a3aeb9f9a9c9527c for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 55e1d18722fe014b6f0446c0f9acf39778e1c2b59d21030ea54a287f4f521122 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 45b00e4540f5a484e7a7c5e65fdf086def19f09f0869036b348314657f28e319 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b45cb42624b39109e951d8609f217b64c1ebc0c0d6d21dc76fe2d9a324b9426e for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9ea1af060907787a4b5a4211ec5bf7854f8a190f90a4ffde10498649e1dba8a1 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 814d3bcdf83b489664d49d9f835610a94aa3570e47c477e0890b37dbcf8b5ae4 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a02ddf3147a0538ad9f1bcc332ec5b232a108dc2ba9b7598dd3561c88bd4abf2 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 95c3c5849292785e96d07b41335516f1bd7238c1a21c4045452259ebd5c07d4d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0cc363645acef87bccbf146aac1227eefb1c6ff49e58d18bc2c60fa66111609b for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7c12a78cb9f942b112c48dfe39df5f5e7dcbc9e385944bbe3cfbca45e9f353d6 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 862053a0918b1ee6adb24f7951a46c71bee650696f689e73e026ddd9e9834c45 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cce24c6008d4c5ac53a4e7469bbe7a638ec022b33db9772ab964af25add78dd2 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7ca404dd3a62a5b08d63d7f8b1fa572cbcc164ef27e5ebfe65cb6da9daf524ef for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0194172fd88cb38fe34a78d0812dfeec6dfc35d2a9babd24b2bbef3329d487c9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3688eaad526ebd052c1222f2ed67f2ffae0e4312d26335f8f1d68df7209e42d8 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 229576d5cd7a10c41c36ad0543f5f968b609545132f1d9d16796c54e088ab82d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9c84fc1049b2c86bff4ccc1cc8e1e24388728a3b053b1e5c88bb8f409d1b6e8b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5a5fc984e096660fb2372558a0ada5cfa38c115d12d6bcf12b5a9ddf993f46fe for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6092bd4d7c0b6fc24c5fd47414c50d4e665565b43166a98aaf28a8365c2b0297 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 436c369d7293b6db1f0c12ca9f4e07927fa4e7fc1e6fb3c50d85fe4e814fff03 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e27c4b883fcc3f29c951140a91fba7fdec1e4c4906961ee68bd71b4eb4d24d31 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 34f495894ef1b86bd5b502d2f02b285b84c79034add5a3f84cf972f0767b90fa for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0a0643425028a50f93b855816c1dcace650db3488929dbbac2e536aef4062359 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 24305b95c044a6c5d1364bb20d8460f4d5751b3e7a808e4c7b3f1b2c874febdb for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 188d65e8024216ae7d19c57dfcaadd9498e4dc39dddd8887b307c3ad4b62c693 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a7839aa50d1581b95ebf0a897432086c88e127aa97e7c149a7bbb43537a9175c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5c94e3a3b124a7e5507d2084671b90f0c442d67ef60fce3c88333f39c4ce43b4 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 670a69e5cbd960ddb5f1f4ace15bbba7eb08df7cbbdbaa301f5f14bf96d2de7b for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: afbb9833a6e091949b37923b7c91644484bd9da45093c5db28cb9c294aa176d7 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bf2eddab43a4037c3a0a213e92a996cf835659d6f23bb5e7934ef5ad9c67ecbd for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f412427127656ec5eb9b7303474dc70444c08bbc69357f0995798b105e44abb5 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bf0b224c1916639e215a339c8df20180b31973c7194fd3578277a55748f3b130 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c8faf926e4b366d715fce913f54dc46acf8ab46ca8658f22bf4be27437eb5313 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f25abaa3e5fcda69367b77f47ba65485531355823b2cbd93a9c76695ce5a07fd for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 38ad1f2c75535f6e9c6f1b771f85a0f2962db162dee874189fe40c909fed3be4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f5136c6d435bfdcb8d0960b635d02b0a6e83f3e41d40cfa84f993fde852241a9 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6de7a25c16497f8adf818a16255d7d7268c91d0baa3314a1abcd507d19a932fa for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5aea7852ff3e30499713dab851f292d39e903858eb90329205da9090a1cc28ee for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c7878698707c76f737232ca73c02cd11c78707399f108c07e44a49fe04b9661d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a8cc61b0734df11b303bb281fcced6858b6967911513eb5b27d210ca62060a17 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0f0babf6b8bfc74af70d359227923ad29b7147443f790a33490977cc8b3b6a7a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d52cc41f23c0087dc0227ec9f52e2faaf49b442d92c24645c9c2ed1462af75fe for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9bfd523f82644c4bba81fe549c9b04ed77913d11ead4456d5800e52215a0ed57 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3ee4df09b968335661654922ce48ada0ba718ab1e2bdd378bf3863480273dc0f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fc4c0dd0f02da812e484d71021ef8b6cb1e3d70029e421fc6c0266ba7119f9bf for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0cf25761e2f8c8c61aec93b31ffcd98c0a64735933faba65430e0201e72d8093 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 68850d6f09e7e62bf7b2c2323beddf691cc1f4fd92db42858b89c18a1babd94d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d52a79882e0209ee312d613845b294a4272a86e1abe60c8786f8b26daa4c9cd6 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 18f053e9b28284a63d4c901125c26f5e6bd3e5b6642cb384ae946982b453acfd for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1fbe14eb8d5edb28a9369922a2af9ae216f37b2f274731ccadb8c408ec09047a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 97d36068bec384baa092c701af5a94def6d013bc49a340f337f870f5baf90712 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 20d7bc396195c1302c36eb0ce1b81fad93bc0ef6ddd67cafeb2b8cf6bd298f79 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 177bdeab1bed7da105027d7eaccaec9567313014fa8be7b436808574cf41c1d2 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6bb7e44ae93a1daa2f5cb43bbee7493b7ed80561518a7b7ba653b90595a338ae for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2c1746c41916ad40a89a33a8ea1aea7b156c50e2229003d8b41c7afce9c40f20 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5e1654506588a2eb99eac3ca17d1a91e046c4fbdb2dd9e4900ba78f7f03f65af for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 419d927d6afa3bdb03e70c645a357942a640ead00a8fe2e6c9004192f6407184 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9fc6cae97eac63e70a1f2384c9be47b6e0601aee2d41e22688499ca0625d5385 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a93f19e161c974bf3b1341daaef1c8a7904c62e891fe457f0191541e7b29be2d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 01ad7f4530c072a9d7ad4f1fe292778758b82d87f76df7214880f2930dfeddf7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e17733293b560488b5d4dcdc9fb6288e8296c0f9c6006701941f4744e9d71c8f for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 92aa36e4cda2a4113a01f8998d2dcf624c233ee029584da1c1418a46ff374d89 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 20bfbb7439961f42020bb7dc292fbb6572c1309fa0edfba4202c0519a216c101 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6ff87f0a8f4c547deff8888ce2f23c96cc119a3cf0838947588420645a08e882 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2ecff1ba7202ecfc62db212fe5005404f01e58fdeadc5a823ced8c55e0abb20d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 04f6137bc694a030890224b8cb0c384a144353048cf84b810609a2f5ccdf7ba2 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: da796c2a04a30f8cf5856f861bf46cf4123850d6c11f1b2114eca3a6806e3244 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 275144c0d7bdc512ac28bf9c48b6e65c580ec764b0971be99af50c3cb4056484 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 635364f18dc8e5879a4e2af0e2e8fa312a53810eb6aa507ae3d87890a3288aa4 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 68bd98045cc4cde2a3d923545b1cad88dfb762be57b177fe0b848e9bf6e6cb89 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e15ba0cd0f8265287c59d0a9da4c9c859ae78aa706aef9e3102101f6189a8df4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 193c45e8647e1bc1c053690ed930f8c2cbaf98a6966d94ba59de813b534d4d4e for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 971a317fb5f0b79236e7152ac5e1b8cfcf49c795937694ceb59808a0d1edbfc8 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5c6be6be5b477abdcb53fa171da1ce350b5e935cdd6106b270655c02d6a2b397 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 722e8ce68f717d1fb3dbdc72ace8a5ed92587d3ade0ec06a3db41831493fcbca for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: be43a4716b019e59f8720facfc158dcd3600065a4edac2dcc1c24dadd5aff02e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ee7e47146e87f2bac15fa39391104f80174a627eaa8081de9fa11b70657c5ecc for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f1d0d43fb741c18594a7d3303eaa6e6103f973cb6b3c2a3f6b3178773d42dcbe for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fd2fb6b6b1791d53abb3c1fb6c4b433da125e1f38ed1631b084ac7d60b4fab45 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2888513ffca85fd0aed6cc3d9d094e584fef349d799f14daf4427639b1a28b53 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 95c112e817b97ab94e3287b8511053d4e51399c1a9ee3aae070ea1c9a0e84fed for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 318cff4cb64cdb3a09fba56e53b23904c232e8e0ff590907d1128e2e7bb39455 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6c9e4f0e4017bbde2a636abe7595f92ac264f0c9464143f3fa4e690b5d70019a for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9e6cf098005cf7034dacfa97b315d1366cebe047577c0183994f570bdfbd1c4e for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 80fac7df56182db5713c1a4e8f7e683a5ac866c1dfaf49497b8a7b32cd911b47 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c544aa31925eb8258f0b93edb1b09df1c74e05d0585867d941ec1428d52f0297 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7a90e7f2665f511dfc3e4a7660586aae065d0f31ffb5a9e75f892a9e1ddfa92d for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 99e365f51f1baef8288d7b98820554075aa268882230324115fc88f2f528b878 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c9aa646e1c6bef12136b8db0ddd2ecbba8591831acbf7ccd772b6f79a5d1ca9b for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 418bbe0a0b448c6d424bf49d5308f3787feab636af41b00016ce08d0b0e01621 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 85109fb85d9590762deb435b0f0e228a8aef6232b49b45416623639e566637c2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8bd46211351bb1dc7f19eeac13f9c7f53141f77d6d4aa57d7dcc5bb4237da47d for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 96ca22eafb83f1116d0c5aa8a1d8df1f9402e45ebdcc33f222e1c4ec28772cae for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9ddd6379ca5c1f2ce1c846d03c5160467058fa29d5387aa378e6dca03d91c0d4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 32505db318fc218941daada02e5b598d4e98ab0474592e253e58b9c97228920d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: de7ca39b16e148e19fd9508b3991bd27c66044fca122451d0bbf1585d5994ccf for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d00343f6e4bb93da979f75b1bcb769be6760a853e180d2c317653f2f5f261976 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4a5ae8e9a8ea86bad9cae3e3251d1c39306b408d3cdbf30d997696c057a06174 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b594b41b79ac6b7420418d791fd767c12651873c6e3839e4d7eeea4e552431fc for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b06e6997120b13f2180a9ee9d117bb7034333b30efa514202fed4b78390dbe4e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fd920bef18eb9fba841e315212e734e2c26c2d6b5c6eed5b6ee3fbf4cf10c200 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 65f21e78158672ccd43a88095b6bfe422a430577a53d5923d4d78322eecf9ba0 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2c0dea1a7f5cda98af3c4939baa8987178e09bf889bfc4e315b09fd996596a1d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2d2858967228d64e7cff3e66e7aed6809e0e222f4ceeacce2462cd648af90d0f for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ff83fa2b55e360eb382e1b8848243c98b3b0ea13e910efe907a73a85954f9d0e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0e5de450d7d1afef8580960b3e99f97ac05ca48d2c843e15f383bf912363f3d9 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 24ecaf41ddcaae06390de4f79a128bfeaf8829a14b18b12e9d012af0b5e2853b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 7e474f1c4ccab620d2f35b02a0aa4eba3353d24ff0d55e0b3272f36d6d849102 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e5ecca4908661f72d41597d86c106a60cc2994c747609373ae480dd73ebdc377 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d59298d737c1c7c6cd6487188e84362691238f19d88fbec9132c16d1cbbdb7b2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 876d33bca361402369a0505dbf7cdc4f0e8619edeb18983ff125da053bc15467 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 28b6792b91fa1b1fcd72a731747b4c4fa10c8ffcfd4a1aab62d27ce7a8dfedb1 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 328ff71d88d441902e2bfa242f8707fe7f4e6bc1bd3b3d72f962d6294ff946dd for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f82445682a2ac94cca8b7d33600e87d36930257b1c641ca6f842ee041e8f83ad for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 85002ca302f5dc2bdb92b3d1e1a54a3da6804920419abcbc43353bd58096b1e5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ab49b57b080b3446396f0ee3fd3ee89c5ea0ab0a63b981e8846f98f2e5e7d042 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4525b9539b1b32ee55929b308f9369d2196d8f95fc515c1084a395f70217396c for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 301d7e2fb9cf20979a01b6abf51b9fca36a0a667217563dde1b4098ba0802470 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ed2efca3bd6b30b11d3130b3d6256037f38a3b6121ddc59b076462e351b0b080 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 133b97eccded37c5ce29cdbca26ff7ca907493fdc27748d6d79b71a506b96fd2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 966f88479b77bb610f16fc4b6f881d3a7030ccdd11edc8b0226d9170968e744d for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bfcb162a8a1f5d016315346b3420956ac2cf53594a769113baff2610743c7cba for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: de4aae8b73e05d387a69b1043e843e547188e56053b6300f50907bb0f49c46f5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bc05ecc092b3c97a32c5fb317dc80ee8a290bf52c2f652e16c1ddf4d4949a14d for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: df1934bf1e612d0527e46fd92e3565f5a0a42be488ea0230d9d47e2153eb8f1a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5de9757bbf16f8ff9da9c99aed960495023c4f3ba03bcd19d2c4061791441770 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3744b53348f227762931561a24dac70b54f790ca700630fe354ea205cbabd85a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 99502534e191272cfe660c792dadcf26d38ab2c6249de74b9ad16999c583f93c for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4a8b4344ab513a916cbaf4fc6c6232382535956b9f87befbe1dae0fa3561db7d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f42f24ce57b675c435bc3b255d5cb4ce7df23c1c8cb6417b8c3a86983b163786 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f285300da97a3390a63b93949af70b849b5579ed971df2f26e6d4b3cd27e65e4 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: fe11646208a963e1b205e7985cc20e130b4e46912241a00ae8a937c047c30dc1 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6c93dd9ff1806479c33015d91fa55a8a2bdebd90d17bc0d704f696538cf982de for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0de371c86eff052353a26d0ad4aee1e99d6d2f12a1e2101fe33752bb42d0d4fe for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: daca707d23c2de8100d6105234a1a4a247b4d08615fa5f8e42207770b497c2c5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 178799ee7dffa7a1530ef3db438a0a03340920fdb9d2c0085f51d5e60a529520 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ac5fe71b012fa09a52cbe90f8accc7dc31ca833cbb49007858284fc00e3d10ce for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 98ac7c906277f582e86fb726f71078dcaef5a9c7c15e7622c9fddee50478800a for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 00db228f7a083ec48d3214daeed7178f039f4cb58824c69b6257d49657415632 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c26e2f467b5b7f8fff46dce0e6060dc883eef5e93d20c2a0292d0de95c613895 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a1c434df9a34c04b4d44a2c4b63a649c9953cddd7c1012f5114b8feb302ecb0d for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: dde45ff84dd372aba22ac611d181a480c30e85acac90aa93339673adc2c419d0 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 02ac5d48be1443879657e608685f4c58484ef99df8065dd3af8e23495d95c3ca for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f7638bd0f9923024db6ef184b0012888519ba488c78e5c867d47aa299d20219e for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0827c205492c37790dd8ed35b95b565e6652fdfb18cc7afda6b1daae43db397b for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2150ca457a2fd67284b6a964560043904133c97ad30a354eced531f10b60e5ca for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 6c6fb50b65fc868b378d06e90f60f563c1c9959a8f3258cf87c9d443fe35b8ee for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5c4a60a0238575096bedf7c98bfbeedc882b52ce2e244bf142b4d353cb6f2a3e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b2b5efbcad6f438cf6111821567ed32437c7b23be5dc17617d79643886a84ce9 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 04a1c8e5326a291bb65efc344a314a37349bc34461b19ebb938196927ee02294 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: db25d8b8af116fe2326956e75a8a976b5e729116fd9f2853bd1901eef50966e9 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9e2552d1104d7e380801bc4e68b8999a3ad4a32a26be12dad3e6de13b24bdebb for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c746f3c5a5cdc95e30c7970dfcc4add8261dbf36d3663b76abd4347a5e1bb734 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1d9d07f400f8542cfbac52707687e2709a52ee5717556a0255879229fd23f743 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e6e13315f2a2e101ad2078336bf08182e914f1e0a338786e85cf7af925a6d71e for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 97447f5afc466e9308647f1ed75d743952a7611dd8948a46c969aab4605d66d5 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b89537622cc1aefdb2233f11aaae51d593dc8f6b8c1b752fbc28c97182dc2ae5 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ac52074a94fef43f370a0ac85fa5650f793c2aaad78bcc5207cd92319165761f for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5a81d4a38de7a243c1cae727632ed763a264a522697f15374c560a38e04e792b for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a1f569277cd903b87f5c8da8ec097a871a9c6c5cd713d8c3f7762563a34829bd for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c3b72ef0f0f9c3b2600fe9bbaf026d73f69c9f80e44ce49ba2c4728adeb87ca4 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 69e8107e13480764e109570d82d2a5ddd094d120c69d1237e3586ad3de2a3495 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1d69f235beca0b2065450f6482bd93fc3e189b3e5141da9f33d873bab4328822 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bc0e1cf369f7e834daa26c13ba605bd2dbc29ac000154b9028bcbf701187d3e0 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: abd330b1d4c1bb8c87dc8edc98a0ccaea31ac0f5c6c2591174740d4829b6dc23 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e27e7523e320bdc201fe239256f7b37f09c3ec5c01f4c3b6e00433377c444e78 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f48dd241de599241aba4801e710486738671058322f67330bc5ea4e5cf269db5 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5f177a22c00d84f6c850c49d72b9631abf408b3c48fa7d6d2116721b7e07b22e for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 223824499ba149155c14fec05461b490cddcec9d0bc550b6a5898eecb9854eb6 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 47c88c48cfd870350ab8820c0b2f857086a2f1b3b8355505796d7ed15f401b09 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: b957584efb4c595290d504a61f217c04a1c74f2713fd94bdf9b0415d297b7182 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a9f4a8658501f4f28184e909cdf43cb6400984829fee122049450e27e451ceb0 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 35c77514a37898bb41838ef80e775f7fb5dfded11372f15d75abe12c91f16bae for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0cac90929cf5d98aa381d2b2416a4885d9d8e4010f443a22eb8eb245ceb35594 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ed249c3ffa617db5bc3849793eef7076dfa01615b194c63c8c39c808790967b0 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3c0864029d0c2750fab0e56eb98c349d36dadba33ce681a9d9ae693b8455f420 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f176c43611286d35875cbd4fed80352436a8609ce858af150fc7031386448e54 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2526abd671015daae550c876c965cbb074cc6e543c3f4fe511335893b737dca1 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 77e096f63720ce7249ea52c6b312773335350db400f62bf8e6ea454b2356e86a for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: cba338f9536e5c85744fda29abc14cde24402e70406cbe1b1754df930ff09e25 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2f2bb467572abbb0af9ef0354f47bc6927859f6a0e20841746a7622d74c60027 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 16c89f5710b7fb734bb9ce60198e954024ee607ed23aa3cd6c564a651beb5497 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 2c6395b554ea487744a8440c3384638a6696eefe9ea985cf335e6d830330d454 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 91e37a82da1d9b5748b3c343093377ab1f4dbf1ed2a947a5ad767b3ce90d0502 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d45693e3abaf7f5d1859860ab9021243c96f506d62d227ca2507cbb157c9024a for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d0eb3b88db6e3f0951f426e57a1d39f513c5ed67aac072963c1ad931bb95d8be for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3fde32a335861554c4aabc167b84760d05dd2108c31949aa106efcf2a927bd91 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 341f55f7496ac4e00b5f5cda77e8d6ede191e08b8f6f3bc15d83f92ed0f7c62f for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e74ffe05b9e1dcbf3952345c3ce45398a1286ae38b4b55acb0126f1cc5d3b5ba for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ffd7d2f1bd81cf67f0d1f86ee31aa3dee4522526d977a18b12269264220a74e2 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 1ef7025d046f7784fef848cc668b2e7b9d88693f8e7b7d216553ef18fef705a1 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 46e47e645c79245b220f584c1074cb0a3940b93859edb6ea34eca5b863bccc73 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: dd319f0293621b5e06953dc69a1617eacc6696508d08a31475e341b759678eec for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e5bd5523c3faf6d6ba762193a8f05a4782370b51600db3fc3bc6a020d5b3ca8a for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 3357e97e3227b771408e1539d1d944808c5652d8dae1ab73db4ac359c289e766 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: bafcdf1a5d4ac7034da077bc4c7b2b4f58c8f3efc882b1700f8e5f8a16f6e8c0 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: eb8aaff6f03166f260ddaf5b468107f1b4b376f1a6252c9a828af77e62b124d6 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8469394378174cc7f9b42955574e874b0eb7cd88aa7df1980bca6763c1fd926d for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 9a3fe3d7852e5b4322f3113671b9471a595f960af75fef37d6f30900379ee844 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: f04531279831aaafeccc94e8fa7f93c387531832e8f443aae75f59681e702113 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: e2adb9793eb3afebdae782e1bb2c00407599cf6a9fe0683958529cd5e3964f24 for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: c10e9e7206603306e377d042868ec041cac78d741651859443c0ff0a8e8a5871 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: a31145110d8953ab051c7ec79c7044d9facc18f63e6143749552dfa8b4fed56c for delegate 3503 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 565839490f8f31e0ae672b0f0101a527730596d4da756bdaaca3a03c695535e3 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 4af3dadf6aa10be23c5f3da860e2a6db8694f258a5a8381cbd6db59461fe927c for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: d5ce938d5c5571047ccb1174111ce1e66963b73ed1feb29e587f2a6df31c6d02 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: ca9f58b2351320bad95710437c4f8e0a05f5c0525fbd17ccea5e8ad59941e0e7 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 0c0f75c9c612ee50b33b7bd913efecf8860af52e48503d6888b0a42be3979d41 for delegate 3505 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 5e77ba23b2c500c2b5e05377f88c194d6c694af65ef75886c1610c47b139fd95 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 23c5708934d9e06fae1b82729fbd1afeda79cb39ea30763c5e9241dd4b8ee591 for delegate 3509 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"
time="2018-10-04T12:07:59-07:00" level=error msg="[Error getting Transaction for hash: 8e349ef378da925ee953b62e9106039f56362282e392305247070d6699c50df4 for delegate 3507 NotFound: Ok]" method="main/tools/transactions/helper.verifyTx()"