This repository was archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 626
Expand file tree
/
Copy path030221.log
More file actions
1579 lines (1527 loc) · 162 KB
/
Copy path030221.log
File metadata and controls
1579 lines (1527 loc) · 162 KB
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
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:10:01 UTC.
Enter password for signing key:
[92mTransaction '4895ce985219389dd4d6544f9438d163f1b9a51bf2e05d18788d07696386c26a' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 4895ce985219389dd4d6544f9438d163f1b9a51bf2e05d18788d07696386c26a'.
[05:00:09] Waiting for the transaction to be committed.........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
....Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:15:01 UTC.
[93mWarning: There is a pending transaction with nonce 454, but last committed one has 453.
This transaction will have nonce 455 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '595d4e962a36a7747635f4203b623445a70170206312b1f46b195d7027d95599' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 595d4e962a36a7747635f4203b623445a70170206312b1f46b195d7027d95599'.
[05:05:09] Waiting for the transaction to be committed.................................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:20:01 UTC.
[93mWarning: There is a pending transaction with nonce 455, but last committed one has 453.
This transaction will have nonce 456 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '0a60b8003148f80c76ee4b670c94981803ce72dde1ab183be70e038f31a93b6e' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 0a60b8003148f80c76ee4b670c94981803ce72dde1ab183be70e038f31a93b6e'.
[05:10:09] Waiting for the transaction to be committed...............................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.........................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:25:01 UTC.
[93mWarning: There is a pending transaction with nonce 456, but last committed one has 453.
This transaction will have nonce 457 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '96acc3d13f5aa98c7632545e66d3ba6cf131762eb7657f9a08cebcfeaf822bc7' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 96acc3d13f5aa98c7632545e66d3ba6cf131762eb7657f9a08cebcfeaf822bc7'.
[05:15:10] Waiting for the transaction to be committed........................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:30:02 UTC.
[93mWarning: There is a pending transaction with nonce 457, but last committed one has 453.
This transaction will have nonce 458 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'ee7a0b7b9b47a481722b3343b5fc8f66a78eda307fcc5bce7ca53b6643f6445e' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ee7a0b7b9b47a481722b3343b5fc8f66a78eda307fcc5bce7ca53b6643f6445e'.
[05:20:10] Waiting for the transaction to be committed............................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m......................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:35:02 UTC.
[93mWarning: There is a pending transaction with nonce 458, but last committed one has 453.
This transaction will have nonce 459 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '6eb3a9bf1abec55638ae6ddd2373465be06ece9bd22727f3862e6fe997ec97aa' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 6eb3a9bf1abec55638ae6ddd2373465be06ece9bd22727f3862e6fe997ec97aa'.
[05:25:11] Waiting for the transaction to be committed.........................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:40:01 UTC.
[93mWarning: There is a pending transaction with nonce 459, but last committed one has 453.
This transaction will have nonce 460 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'd6df327d7c2d9a4f5651fcc5d31ae0bf581035de653100cac90e5f220364f6a9' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status d6df327d7c2d9a4f5651fcc5d31ae0bf581035de653100cac90e5f220364f6a9'.
[05:30:10] Waiting for the transaction to be committed................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.....................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:45:01 UTC.
[93mWarning: There is a pending transaction with nonce 460, but last committed one has 453.
This transaction will have nonce 461 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'a73680b246ddc3a411ebab4dc383de8a2040bdae6ff29bf118fb67c433bbbb1b' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status a73680b246ddc3a411ebab4dc383de8a2040bdae6ff29bf118fb67c433bbbb1b'.
[05:35:09] Waiting for the transaction to be committed........................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:50:01 UTC.
[93mWarning: There is a pending transaction with nonce 461, but last committed one has 453.
This transaction will have nonce 462 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'e0f4e2f9b0fa94e267f06f9a5aba256dd359f8598cd6ead8639cbec65891c273' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e0f4e2f9b0fa94e267f06f9a5aba256dd359f8598cd6ead8639cbec65891c273'.
[05:40:09] Waiting for the transaction to be committed.............................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m......................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 05:55:02 UTC.
[93mWarning: There is a pending transaction with nonce 462, but last committed one has 453.
This transaction will have nonce 463 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '6fb3782ee71c94f95d312fe5cad6bf5d8f17837bf72ad5086507ca20b96b7947' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 6fb3782ee71c94f95d312fe5cad6bf5d8f17837bf72ad5086507ca20b96b7947'.
[05:45:10] Waiting for the transaction to be committed..........................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.......................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 06:00:02 UTC.
[93mWarning: There is a pending transaction with nonce 463, but last committed one has 453.
This transaction will have nonce 464 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'ac0bd08cbd13ba5d92fe288364b6a9375428b9490320741fa07a48178ce33d63' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ac0bd08cbd13ba5d92fe288364b6a9375428b9490320741fa07a48178ce33d63'.
[05:50:10] Waiting for the transaction to be committed....................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.......................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 06:05:01 UTC.
[93mWarning: There is a pending transaction with nonce 464, but last committed one has 453.
This transaction will have nonce 465 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '6036f1865f6830dbc31a42355e0447cdafc9ebefac9549718c9a97770e92db1b' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 6036f1865f6830dbc31a42355e0447cdafc9ebefac9549718c9a97770e92db1b'.
[05:55:10] Waiting for the transaction to be committed...........................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0mspawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:10:02 UTC.
Enter password for signing key:
[92mTransaction '16611e2780e24b286680213ae6d22b30735f2d0cfb907144f5f2277ec289b274' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 16611e2780e24b286680213ae6d22b30735f2d0cfb907144f5f2277ec289b274'.
[07:00:10] Waiting for the transaction to be committed......................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
....Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:15:02 UTC.
[93mWarning: There is a pending transaction with nonce 454, but last committed one has 453.
This transaction will have nonce 455 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'f84efcd174100b1d1498786787563230c3c98f15d9d618700f4a65b619690b26' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status f84efcd174100b1d1498786787563230c3c98f15d9d618700f4a65b619690b26'.
[07:05:10] Waiting for the transaction to be committed.........................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:20:02 UTC.
[93mWarning: There is a pending transaction with nonce 455, but last committed one has 453.
This transaction will have nonce 456 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '4c1b59fbc70697542e750d2506e242b77a481e6c3cc2c612f74554419d7840c0' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 4c1b59fbc70697542e750d2506e242b77a481e6c3cc2c612f74554419d7840c0'.
[07:10:10] Waiting for the transaction to be committed.......................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..........................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:25:02 UTC.
[93mWarning: There is a pending transaction with nonce 456, but last committed one has 453.
This transaction will have nonce 457 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '1e0e79d6f74ffa35a64100bcba2722dffa0a37a08e38f2c6246d75f66bafc9fa' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 1e0e79d6f74ffa35a64100bcba2722dffa0a37a08e38f2c6246d75f66bafc9fa'.
[07:15:10] Waiting for the transaction to be committed...............................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m....................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:30:01 UTC.
[93mWarning: There is a pending transaction with nonce 457, but last committed one has 453.
This transaction will have nonce 458 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '8738ccdf86e638b544ea3fbf5748d9c4b29dea383e6f4e252bf9bd7015cbaaf7' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 8738ccdf86e638b544ea3fbf5748d9c4b29dea383e6f4e252bf9bd7015cbaaf7'.
[07:20:10] Waiting for the transaction to be committed.....................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:35:01 UTC.
[93mWarning: There is a pending transaction with nonce 458, but last committed one has 453.
This transaction will have nonce 459 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'dbac742b2278b3452ee97dec61a87d6fc2944b5ff0782783ee2b4e0de1d0cd53' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status dbac742b2278b3452ee97dec61a87d6fc2944b5ff0782783ee2b4e0de1d0cd53'.
[07:25:10] Waiting for the transaction to be committed....................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m........................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:40:02 UTC.
[93mWarning: There is a pending transaction with nonce 459, but last committed one has 453.
This transaction will have nonce 460 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'ca17c7ab36d21cda46d92400f3da7f4159da4aa6ad48d2510e203e88fc6594f2' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ca17c7ab36d21cda46d92400f3da7f4159da4aa6ad48d2510e203e88fc6594f2'.
[07:30:10] Waiting for the transaction to be committed........................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:45:02 UTC.
[93mWarning: There is a pending transaction with nonce 460, but last committed one has 453.
This transaction will have nonce 461 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '3837e03d1d0326635eb92f3b87719133c8685e9a1c1352c40580bc4d3341cb7c' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 3837e03d1d0326635eb92f3b87719133c8685e9a1c1352c40580bc4d3341cb7c'.
[07:35:10] Waiting for the transaction to be committed......................................................................................................................................................................................................................
[91m.Error: Transaction failed before it got committed. Most likely because it was invalid.
[0m........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:50:02 UTC.
[93mWarning: There is a pending transaction with nonce 461, but last committed one has 453.
This transaction will have nonce 462 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '8d18251aa94c6c3c3e52d5acbc4dc873e56954bc9f8c3e215dc1b64462c678a8' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 8d18251aa94c6c3c3e52d5acbc4dc873e56954bc9f8c3e215dc1b64462c678a8'.
[07:40:10] Waiting for the transaction to be committed................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 07:55:02 UTC.
[93mWarning: There is a pending transaction with nonce 462, but last committed one has 453.
This transaction will have nonce 463 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '3dbc35b22cd551b1bbea7e5ab04e116341668ad37e12d6b79902b6588091eda1' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 3dbc35b22cd551b1bbea7e5ab04e116341668ad37e12d6b79902b6588091eda1'.
[07:45:11] Waiting for the transaction to be committed.......................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 08:00:01 UTC.
[93mWarning: There is a pending transaction with nonce 463, but last committed one has 453.
This transaction will have nonce 464 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'e91d801d3812da85031317ce53aab6931890f63fe55ac179ee0e6837dd5e43c5' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e91d801d3812da85031317ce53aab6931890f63fe55ac179ee0e6837dd5e43c5'.
[07:50:10] Waiting for the transaction to be committed...............................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.......................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 08:05:02 UTC.
[93mWarning: There is a pending transaction with nonce 464, but last committed one has 453.
This transaction will have nonce 465 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '637d2fd716e2141bf36cc570c5f5752a65f0c3c548d819b4979f7af57786de02' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 637d2fd716e2141bf36cc570c5f5752a65f0c3c548d819b4979f7af57786de02'.
[07:55:10] Waiting for the transaction to be committed............................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m............................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0mspawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:10:02 UTC.
Enter password for signing key:
[92mTransaction '8315db417790557e7c692174bdc04aa7111842e9319be471bf84791aab7bb347' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 8315db417790557e7c692174bdc04aa7111842e9319be471bf84791aab7bb347'.
[09:00:11] Waiting for the transaction to be committed.......................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
....Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:15:02 UTC.
[93mWarning: There is a pending transaction with nonce 454, but last committed one has 453.
This transaction will have nonce 455 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '2b5185f1a6980bfb410bd9d47e565918520b39af29c11449354c8b4e3bc399a6' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 2b5185f1a6980bfb410bd9d47e565918520b39af29c11449354c8b4e3bc399a6'.
[09:05:10] Waiting for the transaction to be committed.............................................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:20:02 UTC.
[93mWarning: There is a pending transaction with nonce 455, but last committed one has 453.
This transaction will have nonce 456 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '23f6d0db2fb93198dbff6d6b52629bd5bfb422a804ed758a9d408020f4c8eacd' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 23f6d0db2fb93198dbff6d6b52629bd5bfb422a804ed758a9d408020f4c8eacd'.
[09:10:10] Waiting for the transaction to be committed...........................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m...................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.....
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:25:02 UTC.
[93mWarning: There is a pending transaction with nonce 456, but last committed one has 453.
This transaction will have nonce 457 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'ebb2289d57aa5d7cdda15833d827250127c30eb8b8a3c557885aaf2a1c8f24ed' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ebb2289d57aa5d7cdda15833d827250127c30eb8b8a3c557885aaf2a1c8f24ed'.
[09:15:11] Waiting for the transaction to be committed..................................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:30:02 UTC.
[93mWarning: There is a pending transaction with nonce 457, but last committed one has 453.
This transaction will have nonce 458 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'd47a751a7651511a38864c3636c4ef274b4a4e0fad676127c5d2b9bd3fc58deb' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status d47a751a7651511a38864c3636c4ef274b4a4e0fad676127c5d2b9bd3fc58deb'.
[09:20:10] Waiting for the transaction to be committed..........................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:35:01 UTC.
[93mWarning: There is a pending transaction with nonce 458, but last committed one has 453.
This transaction will have nonce 459 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '67f354e79cd082cf8263ff2eb0d747dddf787ba4a9a4c79ed4daa71a473af3ba' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 67f354e79cd082cf8263ff2eb0d747dddf787ba4a9a4c79ed4daa71a473af3ba'.
[09:25:11] Waiting for the transaction to be committed...........................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:40:01 UTC.
[93mWarning: There is a pending transaction with nonce 459, but last committed one has 453.
This transaction will have nonce 460 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction '6d068d9d6e69ce7f62a921a057be33dce645649f7c1486b7167b61ba568fbf8b' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 6d068d9d6e69ce7f62a921a057be33dce645649f7c1486b7167b61ba568fbf8b'.
[09:30:10] Waiting for the transaction to be committed.........................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:45:01 UTC.
..[93mWarning: There is a pending transaction with nonce 460, but last committed one has 453.
This transaction will have nonce 461 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'e7914ffc99c85cca62081016e780e61f06e6bd7857139ca143a6856427728a6c' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e7914ffc99c85cca62081016e780e61f06e6bd7857139ca143a6856427728a6c'.
[09:35:10] Waiting for the transaction to be committed...................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m....................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:50:01 UTC.
[93mWarning: There is a pending transaction with nonce 461, but last committed one has 453.
This transaction will have nonce 462 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '16a76b76eef82aa0fa184b84ad429bad7f142d73b3b07deb1b5860499e738fac' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 16a76b76eef82aa0fa184b84ad429bad7f142d73b3b07deb1b5860499e738fac'.
[09:40:10] Waiting for the transaction to be committed..............................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m......................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 09:55:02 UTC.
[93mWarning: There is a pending transaction with nonce 462, but last committed one has 453.
This transaction will have nonce 463 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '4209d9ddabbb126e6771d22fb1361a5a7c2cc7ff355178e47eced04a45e3d4c5' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 4209d9ddabbb126e6771d22fb1361a5a7c2cc7ff355178e47eced04a45e3d4c5'.
[09:45:10] Waiting for the transaction to be committed......................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 10:00:02 UTC.
[93mWarning: There is a pending transaction with nonce 463, but last committed one has 453.
This transaction will have nonce 464 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction 'e1fe81ca76b2b97e0657871875d1f48215cf2de2dadc024b08c4ba9ddc3d85b2' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status e1fe81ca76b2b97e0657871875d1f48215cf2de2dadc024b08c4ba9ddc3d85b2'.
[09:50:10] Waiting for the transaction to be committed....................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m....................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 10:05:01 UTC.
[93mWarning: There is a pending transaction with nonce 464, but last committed one has 453.
This transaction will have nonce 465 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction 'b9cdabcb55e346b1cc790b5c874b9c535e277780729a35817c6757e21ab7c676' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status b9cdabcb55e346b1cc790b5c874b9c535e277780729a35817c6757e21ab7c676'.
[09:55:10] Waiting for the transaction to be committed.................................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m...............................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m...................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0mspawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:10:01 UTC.
Enter password for signing key:
[92mTransaction '19f9e321eaf21f1d0a75413f4238ff304bcda7924a543a31db7ee43d82a1ebb7' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 19f9e321eaf21f1d0a75413f4238ff304bcda7924a543a31db7ee43d82a1ebb7'.
[11:00:10] Waiting for the transaction to be committed...............................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
...Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:15:01 UTC.
[93mWarning: There is a pending transaction with nonce 454, but last committed one has 453.
This transaction will have nonce 455 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'ad59f9a8c1c1094f0d340fe1cae3d265215dca9c85b2652ab479a838b5ec3330' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ad59f9a8c1c1094f0d340fe1cae3d265215dca9c85b2652ab479a838b5ec3330'.
[11:05:10] Waiting for the transaction to be committed.................................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:20:01 UTC.
[93mWarning: There is a pending transaction with nonce 455, but last committed one has 453.
This transaction will have nonce 456 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '89844ac492ad473073f49b357164faba791614f9d8870739955479144ef05d5a' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 89844ac492ad473073f49b357164faba791614f9d8870739955479144ef05d5a'.
[11:10:10] Waiting for the transaction to be committed........................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m....................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:25:01 UTC.
[93mWarning: There is a pending transaction with nonce 456, but last committed one has 453.
This transaction will have nonce 457 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'b674ef2d7c972b00465f9db1c2030c478af0d27b71c476d527ff9dcb9a517f86' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status b674ef2d7c972b00465f9db1c2030c478af0d27b71c476d527ff9dcb9a517f86'.
[11:15:10] Waiting for the transaction to be committed...............................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.....................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:30:01 UTC.
[93mWarning: There is a pending transaction with nonce 457, but last committed one has 453.
This transaction will have nonce 458 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction 'd557a62c885aaa69c4c1d1b36e916cb5cffb948b254bf67b95ef8cb77cde29e2' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status d557a62c885aaa69c4c1d1b36e916cb5cffb948b254bf67b95ef8cb77cde29e2'.
[11:20:10] Waiting for the transaction to be committed................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m........................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:35:01 UTC.
[93mWarning: There is a pending transaction with nonce 458, but last committed one has 453.
This transaction will have nonce 459 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'df5974e360e2046b2490b2637903377fd1c6968449be9f587eee4438632bbe19' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status df5974e360e2046b2490b2637903377fd1c6968449be9f587eee4438632bbe19'.
[11:25:10] Waiting for the transaction to be committed.........................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..............................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m...Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:40:01 UTC.
[93mWarning: There is a pending transaction with nonce 459, but last committed one has 453.
This transaction will have nonce 460 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '50cd68489d4e62bdfc97cd5a0ef7200ed37bc5a61061b55246d036d72ce61dfb' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 50cd68489d4e62bdfc97cd5a0ef7200ed37bc5a61061b55246d036d72ce61dfb'.
[11:30:10] Waiting for the transaction to be committed.......................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:45:02 UTC.
[93mWarning: There is a pending transaction with nonce 460, but last committed one has 453.
This transaction will have nonce 461 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'fb16a28a8be9096e0428ccb4dc2ff55b060f59870fcc3356fe4e8464c2760763' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status fb16a28a8be9096e0428ccb4dc2ff55b060f59870fcc3356fe4e8464c2760763'.
[11:35:10] Waiting for the transaction to be committed..................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:50:01 UTC.
[93mWarning: There is a pending transaction with nonce 461, but last committed one has 453.
This transaction will have nonce 462 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '9f5f7cd422e76b637287f29462e64f8bb5a1357550a3d6a102d29ac3329c33fa' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 9f5f7cd422e76b637287f29462e64f8bb5a1357550a3d6a102d29ac3329c33fa'.
[11:40:10] Waiting for the transaction to be committed.................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 11:55:01 UTC.
[93mWarning: There is a pending transaction with nonce 462, but last committed one has 453.
This transaction will have nonce 463 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '7e7f740fbe651ac27fb439e72234052ce251f661a7983960cf7ee9d868403e75' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 7e7f740fbe651ac27fb439e72234052ce251f661a7983960cf7ee9d868403e75'.
[11:45:10] Waiting for the transaction to be committed..............................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 12:00:02 UTC.
[93mWarning: There is a pending transaction with nonce 463, but last committed one has 453.
This transaction will have nonce 464 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction 'd723aff39cc10dbf533bdadfaca2163ebe90c089f617317bba5b47bb05dee872' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status d723aff39cc10dbf533bdadfaca2163ebe90c089f617317bba5b47bb05dee872'.
[11:50:10] Waiting for the transaction to be committed.....................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.......................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 12:05:02 UTC.
[93mWarning: There is a pending transaction with nonce 464, but last committed one has 453.
This transaction will have nonce 465 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction '1021a288555f1739b961666dbf4b2512d70985e761139e5151845a1142f8fcb0' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 1021a288555f1739b961666dbf4b2512d70985e761139e5151845a1142f8fcb0'.
[11:55:10] Waiting for the transaction to be committed...............................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.....................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.......................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0mspawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:10:01 UTC.
Enter password for signing key:
[92mTransaction '899fadc7f67605b0006f506535b07c8a03d3609edf9e3513c283f959af68f259' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 899fadc7f67605b0006f506535b07c8a03d3609edf9e3513c283f959af68f259'.
[13:00:10] Waiting for the transaction to be committed...............................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
....Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:15:02 UTC.
[93mWarning: There is a pending transaction with nonce 454, but last committed one has 453.
This transaction will have nonce 455 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '8b625533b83466b233d2bd643b87f85904910bfab7b8766758667086357e0a27' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 8b625533b83466b233d2bd643b87f85904910bfab7b8766758667086357e0a27'.
[13:05:10] Waiting for the transaction to be committed.........................................................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:20:01 UTC.
[93mWarning: There is a pending transaction with nonce 455, but last committed one has 453.
This transaction will have nonce 456 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction '1e6d2b84b0259383953a1d0c31cd47d13e996d02ac0337fed4c37b81d7ffbc3d' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 1e6d2b84b0259383953a1d0c31cd47d13e996d02ac0337fed4c37b81d7ffbc3d'.
[13:10:11] Waiting for the transaction to be committed.............................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m....................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:25:01 UTC.
[93mWarning: There is a pending transaction with nonce 456, but last committed one has 453.
This transaction will have nonce 457 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '83e48f7869c336f70c381ff88be19afb591e711eaae334c198974327b5241696' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 83e48f7869c336f70c381ff88be19afb591e711eaae334c198974327b5241696'.
[13:15:09] Waiting for the transaction to be committed.....................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m......................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:30:01 UTC.
[93mWarning: There is a pending transaction with nonce 465, but last committed one has 453.
This transaction will have nonce 466 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'a4e4d93c9385e95cb3e61fca0d7d223a4c69cc78c2b7a87a5efef0cf5e9076b4' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status a4e4d93c9385e95cb3e61fca0d7d223a4c69cc78c2b7a87a5efef0cf5e9076b4'.
[13:20:09] Waiting for the transaction to be committed...................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..............................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:35:01 UTC.
[93mWarning: There is a pending transaction with nonce 466, but last committed one has 453.
This transaction will have nonce 467 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'b129fd472830117d9f913399269f49325fa5fbc04851aa718789ec30828e8e2f' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status b129fd472830117d9f913399269f49325fa5fbc04851aa718789ec30828e8e2f'.
[13:25:10] Waiting for the transaction to be committed..............................................
[.91.mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m....................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:40:01 UTC.
.[93mWarning: There is a pending transaction with nonce 467, but last committed one has 453.
This transaction will have nonce 468 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '86302fe57ae4106b332791417ee3c3211779ddb559c8a0bf2b5c2529d648de7b' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 86302fe57ae4106b332791417ee3c3211779ddb559c8a0bf2b5c2529d648de7b'.
[13:30:10] Waiting for the transaction to be committed..........................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m...............................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:45:02 UTC.
.[93mWarning: There is a pending transaction with nonce 468, but last committed one has 453.
This transaction will have nonce 469 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '13c0c3ace9e345bd556d3430b1d4f28380c94790ddfcec44927c81da361ea86a' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 13c0c3ace9e345bd556d3430b1d4f28380c94790ddfcec44927c81da361ea86a'.
[13:35:10] Waiting for the transaction to be committed...............................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m................................................................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:50:01 UTC.
[93mWarning: There is a pending transaction with nonce 469, but last committed one has 453.
This transaction will have nonce 470 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '32f2623fde6e8c0164d0b7143f8bc67c0d1bddf2738f7b0e20f17a44e68eed61' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 32f2623fde6e8c0164d0b7143f8bc67c0d1bddf2738f7b0e20f17a44e68eed61'.
[13:40:10] Waiting for the transaction to be committed..................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
........Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 13:55:01 UTC.
[93mWarning: There is a pending transaction with nonce 470, but last committed one has 453.
This transaction will have nonce 471 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'ff6e17606573d14335131615bffff4509551fc1755adadafe555c722b7ac06ed' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status ff6e17606573d14335131615bffff4509551fc1755adadafe555c722b7ac06ed'.
[13:45:10] Waiting for the transaction to be committed........................................................................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m.........................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
.......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 14:00:02 UTC.
.[93mWarning: There is a pending transaction with nonce 471, but last committed one has 453.
This transaction will have nonce 472 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction '93cce7c657d5e2e970473c3a263bc6944813d493c22ba5717f7f55cc8b6e412c' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 93cce7c657d5e2e970473c3a263bc6944813d493c22ba5717f7f55cc8b6e412c'.
[13:50:11] Waiting for the transaction to be committed...............................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m..........................................................................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
......Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 14:05:01 UTC.
[93mWarning: There is a pending transaction with nonce 472, but last committed one has 453.
This transaction will have nonce 473 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '0de425c442a2fae31c9a7dabb6d28dc91deaf321da34d5d97b5d2d9dc6039aeb' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 0de425c442a2fae31c9a7dabb6d28dc91deaf321da34d5d97b5d2d9dc6039aeb'.
[13:55:09] Waiting for the transaction to be committed.....................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m................................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0m...............................................................................................................................................................
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0mspawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Wed, 3 Feb 2021 15:10:02 UTC.
[93mWarning: There is a pending transaction with nonce 461, but last committed one has 453.
This transaction will have nonce 462 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '09c1e7ac6be0b3594d3d48196766cd7c028eaed6af6ad1c1c38896abf5b77c6a' sent to the baker.
[0mWaiting for the transaction to be committed and finalized.
You may skip this step by interrupting the command using Ctrl-C (pass flag '--no-wait' to do this by default).
The transaction will still get processed and may be queried using
'transaction status 09c1e7ac6be0b3594d3d48196766cd7c028eaed6af6ad1c1c38896abf5b77c6a'.
[15:00:10] Waiting for the transaction to be committed..................................................................................................................spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP --amount 0.1 --sender 3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc --no-confirm
Using default energy amount of 30070 NRG.
Enter password for decrypting the secret encryption key:
...Transferring 0.100000 GTU from encrypted balance of account '3hG2SNwEKkT5pRe6mGgPMowkCTgjbtJUJj5UPaTxnjfSYhsQQc' (Lcofjurn) to '3QhuD1T16FeNQbFDskqSYBcTF5sR3zaMJ3rxVLFCDeqnf9JJbP'.