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 path040221.log
More file actions
1598 lines (1509 loc) · 160 KB
/
Copy path040221.log
File metadata and controls
1598 lines (1509 loc) · 160 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 Thu, 4 Feb 2021 05:10:02 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 'cba793d84a6f9bbbcc80f65c10c6395dccd6f00819c941b052c72eeab738b053' 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 cba793d84a6f9bbbcc80f65c10c6395dccd6f00819c941b052c72eeab738b053'.
[05: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 Thu, 4 Feb 2021 05:15:02 UTC.
[93mWarning: There is a pending transaction with nonce 473, but last committed one has 453.
This transaction will have nonce 474 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '62706f422e771231b50e1cf8ea9cbcbc8c2925fff5b4869e7df1c339e52ceffc' 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 62706f422e771231b50e1cf8ea9cbcbc8c2925fff5b4869e7df1c339e52ceffc'.
[05: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 Thu, 4 Feb 2021 05:20:02 UTC.
..[93mWarning: There is a pending transaction with nonce 474, but last committed one has 453.
This transaction will have nonce 475 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '11a8f0c5563befdefaed905848d47572779df8b41058c55a36d9ad9446611d5d' 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 11a8f0c5563befdefaed905848d47572779df8b41058c55a36d9ad9446611d5d'.
[05: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 Thu, 4 Feb 2021 05:25:02 UTC.
[93mWarning: There is a pending transaction with nonce 475, but last committed one has 453.
This transaction will have nonce 476 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '20c3f6be6e9ab3dd45865b2eaaab9300b2d6a0d0ff7422d894183fa622621683' 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 20c3f6be6e9ab3dd45865b2eaaab9300b2d6a0d0ff7422d894183fa622621683'.
[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:
...
[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 Thu, 4 Feb 2021 05:30:02 UTC.
[93mWarning: There is a pending transaction with nonce 476, but last committed one has 453.
This transaction will have nonce 477 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'f4fbe3a262316ce91c0c6d739792959c74f9e9fc0b5d91b206390085993588ce' 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 f4fbe3a262316ce91c0c6d739792959c74f9e9fc0b5d91b206390085993588ce'.
[05:20: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 Thu, 4 Feb 2021 05:35:02 UTC.
[93mWarning: There is a pending transaction with nonce 477, but last committed one has 453.
This transaction will have nonce 478 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'ea29d99a48dfe4ce3469e44b9a3358ba812e57252c9d64f8d5d09b5186a75a75' 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 ea29d99a48dfe4ce3469e44b9a3358ba812e57252c9d64f8d5d09b5186a75a75'.
[05: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 Thu, 4 Feb 2021 05:40:01 UTC.
[93mWarning: There is a pending transaction with nonce 478, but last committed one has 453.
This transaction will have nonce 479 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'b8e05d540417ee6f99e153cf46c90fad2e1f2c29d526131c2771d9fe53e60cf8' 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 b8e05d540417ee6f99e153cf46c90fad2e1f2c29d526131c2771d9fe53e60cf8'.
[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:
......
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0mTransferring 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 Thu, 4 Feb 2021 05:45:02 UTC.
[93mWarning: There is a pending transaction with nonce 479, but last committed one has 453.
This transaction will have nonce 480 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction 'b506fcca25eee381a9c0fa8ca5a29677830f503abad4eec8d458d433addcd0fc' 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 b506fcca25eee381a9c0fa8ca5a29677830f503abad4eec8d458d433addcd0fc'.
[05:35: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:
....
[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 Thu, 4 Feb 2021 05:50:01 UTC.
[93mWarning: There is a pending transaction with nonce 480, but last committed one has 453.
This transaction will have nonce 481 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '93861eb79d3f2a0778f012de441421920a7e1c4c867f42246fd4395c464114cf' 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 93861eb79d3f2a0778f012de441421920a7e1c4c867f42246fd4395c464114cf'.
[05:40: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 Thu, 4 Feb 2021 05:55:02 UTC.
[93mWarning: There is a pending transaction with nonce 481, but last committed one has 453.
This transaction will have nonce 482 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '420e71a196479adc0f0ec2bacd4161f23ca195359090a4d29799abf49164b84f' 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 420e71a196479adc0f0ec2bacd4161f23ca195359090a4d29799abf49164b84f'.
[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:
......
[91mError: Transaction failed before it got committed. Most likely because it was invalid.
[0mTransferring 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 Thu, 4 Feb 2021 06:00:01 UTC.
[93mWarning: There is a pending transaction with nonce 482, but last committed one has 453.
This transaction will have nonce 483 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '8dd260c7c5b74919629f9335a55b57201b0b7dbb08141bed6d0be3ae04fd2177' 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 8dd260c7c5b74919629f9335a55b57201b0b7dbb08141bed6d0be3ae04fd2177'.
[05:50: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 Thu, 4 Feb 2021 06:05:01 UTC.
[93mWarning: There is a pending transaction with nonce 483, but last committed one has 453.
This transaction will have nonce 484 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '71cbef60f79ee52bf1aabc04e1136787f9331ca0bd9b50a76ead13a83ce44a30' 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 71cbef60f79ee52bf1aabc04e1136787f9331ca0bd9b50a76ead13a83ce44a30'.
[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 Thu, 4 Feb 2021 07:10:01 UTC.
Enter password for signing key:
[92mTransaction '2acebdf908322c0ef79d2d0b32d75d63a0094402c606b5c425d3bef8014b4f64' 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 2acebdf908322c0ef79d2d0b32d75d63a0094402c606b5c425d3bef8014b4f64'.
[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 Thu, 4 Feb 2021 07: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 '24387d2bf0a0cdbb62f783026f68d394543358ccf8a04e3368886e407e17f4bf' 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 24387d2bf0a0cdbb62f783026f68d394543358ccf8a04e3368886e407e17f4bf'.
[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:
..
[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 Thu, 4 Feb 2021 07:20:02 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 'c9248b55fd555b95bcd7773b17f8e0bab85d08a551f4812300db2064bbdbb3f4' 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 c9248b55fd555b95bcd7773b17f8e0bab85d08a551f4812300db2064bbdbb3f4'.
[07:10: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:
.
[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 Thu, 4 Feb 2021 07:25:01 UTC.
[93mWarning: There is a pending transaction with nonce 473, but last committed one has 453.
This transaction will have nonce 474 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '794b857192a0ad8a6d189d6f1454e37709b44e4009c4336c66931d16e29bfc80' 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 794b857192a0ad8a6d189d6f1454e37709b44e4009c4336c66931d16e29bfc80'.
[07:15: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:
[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 Thu, 4 Feb 2021 07:30:01 UTC.
.[93mWarning: There is a pending transaction with nonce 474, but last committed one has 453.
This transaction will have nonce 475 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'f5412854620e23577201904c0471dad4fc631015352a8ef4f1a7a26e07b85b87' 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 f5412854620e23577201904c0471dad4fc631015352a8ef4f1a7a26e07b85b87'.
[07:20: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:
[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 Thu, 4 Feb 2021 07:35:02 UTC.
[93mWarning: There is a pending transaction with nonce 475, but last committed one has 453.
This transaction will have nonce 476 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'd71845e32f0ff95c06d5bf2966efd5cf50e4884366e705caac7ec9a5196979c2' 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 d71845e32f0ff95c06d5bf2966efd5cf50e4884366e705caac7ec9a5196979c2'.
[07:25: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:
[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 Thu, 4 Feb 2021 07:40:01 UTC.
[93mWarning: There is a pending transaction with nonce 476, but last committed one has 453.
This transaction will have nonce 477 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'dc71997f5ba1d102a9e27c1ba9a218343c4a089e5e3e28a2d3e00437612a55bd' 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 dc71997f5ba1d102a9e27c1ba9a218343c4a089e5e3e28a2d3e00437612a55bd'.
[07: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:
.
[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 Thu, 4 Feb 2021 07:45:02 UTC.
[93mWarning: There is a pending transaction with nonce 477, but last committed one has 453.
This transaction will have nonce 478 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'c4ebfd18fde21e869c2cc60a9ac1c65c44ec16e85ec637463c37cabf46fa60bb' 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 c4ebfd18fde21e869c2cc60a9ac1c65c44ec16e85ec637463c37cabf46fa60bb'.
[07:35: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:
.
[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 Thu, 4 Feb 2021 07:50:02 UTC.
[93mWarning: There is a pending transaction with nonce 478, but last committed one has 453.
This transaction will have nonce 479 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'e525a27d7abf30a6d4543100834487a2ea42d3116527a2a7d733eaf06ef4907b' 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 e525a27d7abf30a6d4543100834487a2ea42d3116527a2a7d733eaf06ef4907b'.
[07:40: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:
..
[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 Thu, 4 Feb 2021 07:55:02 UTC.
[93mWarning: There is a pending transaction with nonce 479, but last committed one has 453.
This transaction will have nonce 480 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '6c24a64b5ac93daffea02340afac2c17e0967a9289dd2b9e578c1c4cfe176c4a' 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 6c24a64b5ac93daffea02340afac2c17e0967a9289dd2b9e578c1c4cfe176c4a'.
[07:45: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:
.
[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 Thu, 4 Feb 2021 08:00:02 UTC.
[93mWarning: There is a pending transaction with nonce 480, but last committed one has 453.
This transaction will have nonce 481 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '14a378e3f007e6499d3eb62a3ee42fc6a47adb1b70883bbde49060a8bf773ef8' 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 14a378e3f007e6499d3eb62a3ee42fc6a47adb1b70883bbde49060a8bf773ef8'.
[07:50: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:
..
[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 Thu, 4 Feb 2021 08:05:02 UTC.
[93mWarning: There is a pending transaction with nonce 481, but last committed one has 453.
This transaction will have nonce 482 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'e55d36ad38a3f00628e56784e7790dbc3901714f40b092103170f17286679973' 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 e55d36ad38a3f00628e56784e7790dbc3901714f40b092103170f17286679973'.
[07:55:11] 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.
[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 Thu, 4 Feb 2021 09:10:02 UTC.
[93mWarning: There is a pending transaction with nonce 473, but last committed one has 453.
This transaction will have nonce 474 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '2985095f7aba9c84f14dd94ab4ccadbd4203dca55f370a86157fabfe2fc88637' 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 2985095f7aba9c84f14dd94ab4ccadbd4203dca55f370a86157fabfe2fc88637'.
[09: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:
[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:
concordium-client: user error (Cannot connect to GRPC server.)
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 Thu, 4 Feb 2021 09:20:02 UTC.
Enter password for signing key:
[92mTransaction 'faf8ae97276c1c2153b3cfcfd34cd64daa913c32e8795c14415b70fcd6d1fe8f' 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 faf8ae97276c1c2153b3cfcfd34cd64daa913c32e8795c14415b70fcd6d1fe8f'.
[09:10:13] 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 Thu, 4 Feb 2021 09:25: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 '58d21e1de051e9276a9a53efe28148d453b789ac600fc1bce0c4c389298667ea' 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 58d21e1de051e9276a9a53efe28148d453b789ac600fc1bce0c4c389298667ea'.
[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:
...
[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 Thu, 4 Feb 2021 09:30: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 'f43895605912ab2ef7f397d3cbb6af9a82dbddcdc065b3517c32bd48e2022ca8' 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 f43895605912ab2ef7f397d3cbb6af9a82dbddcdc065b3517c32bd48e2022ca8'.
[09:20: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 Thu, 4 Feb 2021 09:35: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 '54ffcfd5e0a7dd27a5573ade860d5addd14415c6411a48a84b788f59d3e4638a' 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 54ffcfd5e0a7dd27a5573ade860d5addd14415c6411a48a84b788f59d3e4638a'.
[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 Thu, 4 Feb 2021 09:40: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 'ea081bf4bd32f381a7d1a8b1a0a0193d6a7cd2b222c959c39ebcd4f0a7699383' 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 ea081bf4bd32f381a7d1a8b1a0a0193d6a7cd2b222c959c39ebcd4f0a7699383'.
[09:30: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 Thu, 4 Feb 2021 09:45: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 '34a367b8323087741c072b58d52f696addb78d900cd8576a9f25d5912b4556d7' 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 34a367b8323087741c072b58d52f696addb78d900cd8576a9f25d5912b4556d7'.
[09:35:12] 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 Thu, 4 Feb 2021 09:50: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 '7d49033d839a21c63680493f55ee12144ae78a61deffbcd91b0f24ffcb8cdf98' 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 7d49033d839a21c63680493f55ee12144ae78a61deffbcd91b0f24ffcb8cdf98'.
[09:40:13] 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 Thu, 4 Feb 2021 09:55: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 '30cf830a1b00188002d239805e7f220074d093bd470396bfab260f262ade4fdc' 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 30cf830a1b00188002d239805e7f220074d093bd470396bfab260f262ade4fdc'.
[09:45:13] 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 Thu, 4 Feb 2021 10:00: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 '467f49798777b02f4c8222492e21b1d0e01ffb2ce6e4fb2415e5fd0b21506bc1' 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 467f49798777b02f4c8222492e21b1d0e01ffb2ce6e4fb2415e5fd0b21506bc1'.
[09:50: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:
.
[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 Thu, 4 Feb 2021 10:05: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 '25e52ee5e7e2ffeca76ad8d1f73e84f9e73ceff0f7ec42f484cd99c7f2f05a36' 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 25e52ee5e7e2ffeca76ad8d1f73e84f9e73ceff0f7ec42f484cd99c7f2f05a36'.
[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.
[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 Thu, 4 Feb 2021 11:10:02 UTC.
Enter password for signing key:
[92mTransaction 'f8ac87ab6839a06fed0f14c3a0780160363f17cbed8942ab14717f53138143c8' 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 f8ac87ab6839a06fed0f14c3a0780160363f17cbed8942ab14717f53138143c8'.
[11: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 Thu, 4 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 'f23dcf56703d715bbc762ded30c6d903cbad7016f077d91e218d5c1a967ab9a7' 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 f23dcf56703d715bbc762ded30c6d903cbad7016f077d91e218d5c1a967ab9a7'.
[11:05: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 Thu, 4 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 '95c71088bdabaccc3204f33c151d742abbab3fc31cd82cb7059d9ce74df650bb' 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 95c71088bdabaccc3204f33c151d742abbab3fc31cd82cb7059d9ce74df650bb'.
[11: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 Thu, 4 Feb 2021 11: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 'a340e8c2a89683314c41573d257b49fb293f80ac4cb4caf9dff83d29271287a6' 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 a340e8c2a89683314c41573d257b49fb293f80ac4cb4caf9dff83d29271287a6'.
[11:15: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:
..
[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 Thu, 4 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 '6fed2857775f2564dfd905d906ed9585c33de8a202038ba94f2f628a0068ac36' 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 6fed2857775f2564dfd905d906ed9585c33de8a202038ba94f2f628a0068ac36'.
[11:20: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:
....
[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 Thu, 4 Feb 2021 11:35:02 UTC.
[93mWarning: There is a pending transaction with nonce 476, but last committed one has 453.
This transaction will have nonce 477 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '4bc9ccab75772a9aebe27175bcebcff27fd7b43a92093260c65df496624e9f48' 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 4bc9ccab75772a9aebe27175bcebcff27fd7b43a92093260c65df496624e9f48'.
[11:25:12] 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:
...
[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 Thu, 4 Feb 2021 11:40:01 UTC.
[93mWarning: There is a pending transaction with nonce 477, but last committed one has 453.
This transaction will have nonce 478 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'a6fa7e4c12ef703a19e843d70d0f83751fa5540473377d478312dbadbf4b2f41' 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 a6fa7e4c12ef703a19e843d70d0f83751fa5540473377d478312dbadbf4b2f41'.
[11:30: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 Thu, 4 Feb 2021 11:45:02 UTC.
[93mWarning: There is a pending transaction with nonce 478, but last committed one has 453.
This transaction will have nonce 479 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '72a8e7404138a39786ae9c0f7de0121a166e269e6f46a2806c315cd954f71bd6' 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 72a8e7404138a39786ae9c0f7de0121a166e269e6f46a2806c315cd954f71bd6'.
[11:35:12] 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 Thu, 4 Feb 2021 11:50:01 UTC.
[93mWarning: There is a pending transaction with nonce 479, but last committed one has 453.
This transaction will have nonce 480 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'a1f26a247dd3ec38d750a56afb76758b861452b171245b32be8ab221a574dcb1' 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 a1f26a247dd3ec38d750a56afb76758b861452b171245b32be8ab221a574dcb1'.
[11:40:13] 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 Thu, 4 Feb 2021 11:55:02 UTC.
[93mWarning: There is a pending transaction with nonce 480, but last committed one has 453.
This transaction will have nonce 481 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '8338b850a023991a9608bf5a24eeba9dd3544f1be05a466928bbbb749a953f99' 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 8338b850a023991a9608bf5a24eeba9dd3544f1be05a466928bbbb749a953f99'.
[11:45:13] 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 Thu, 4 Feb 2021 12:00:02 UTC.
[93mWarning: There is a pending transaction with nonce 481, but last committed one has 453.
This transaction will have nonce 482 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '3c6dab3d7699b4bb9b808081713bb4dff3c491b4a2134f266c1c06e2a4e60d46' 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 3c6dab3d7699b4bb9b808081713bb4dff3c491b4a2134f266c1c06e2a4e60d46'.
[11: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 Thu, 4 Feb 2021 12:05:02 UTC.
[93mWarning: There is a pending transaction with nonce 482, but last committed one has 453.
This transaction will have nonce 483 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '4513ba1cba12fe2676f45042d32eea5af8d55f2ac4ceb7c3996a4fbb8b46c104' 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 4513ba1cba12fe2676f45042d32eea5af8d55f2ac4ceb7c3996a4fbb8b46c104'.
[11:55:12] 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 Thu, 4 Feb 2021 13:10:02 UTC.
Enter password for signing key:
[92mTransaction 'ab79ba431f74f1ac28afa2be4112ea73a2c7e71efc2df9d9e3a38679f58999f0' 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 ab79ba431f74f1ac28afa2be4112ea73a2c7e71efc2df9d9e3a38679f58999f0'.
[13:00:13] 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 Thu, 4 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 '6382ae18813377a944faa0bbd2eafe944605313c13729c7c4c78e560afc6e1c4' 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 6382ae18813377a944faa0bbd2eafe944605313c13729c7c4c78e560afc6e1c4'.
[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:
.
[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 Thu, 4 Feb 2021 13:20: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 'a65b23ccabe4af2d30407fd9cdcb8c216cf1f6061a2c1f8eb99bc9bb875d84ea' 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 a65b23ccabe4af2d30407fd9cdcb8c216cf1f6061a2c1f8eb99bc9bb875d84ea'.
[13:10:13] 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:
..
[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 Thu, 4 Feb 2021 13:25:02 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 'ba413618a570cd2ec6b7083e430e5e33510f8c9463dd1472af86097d3f66361d' 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 ba413618a570cd2ec6b7083e430e5e33510f8c9463dd1472af86097d3f66361d'.
[13:15:12] 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 Thu, 4 Feb 2021 13:30:02 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 '141106298a99c8f91758b6433c694277d8f34d30b8c1d617ac6c30ca1d272392' 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 141106298a99c8f91758b6433c694277d8f34d30b8c1d617ac6c30ca1d272392'.
[13:20:12] 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 Thu, 4 Feb 2021 13:35:02 UTC.
[93mWarning: There is a pending transaction with nonce 478, but last committed one has 453.
This transaction will have nonce 479 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'feb6eaf72417aae3a5cb2254e3fdfaaed2a8a827e01dd59e7aac2bfc0e4846f2' 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 feb6eaf72417aae3a5cb2254e3fdfaaed2a8a827e01dd59e7aac2bfc0e4846f2'.
[13:25: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 Thu, 4 Feb 2021 13:40:02 UTC.
[93mWarning: There is a pending transaction with nonce 479, but last committed one has 453.
This transaction will have nonce 480 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '7c56c9f8ad4fc4c02bd002c2f894fa276fbd4d143e8a59eb21e05ebd62bf38e1' 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 7c56c9f8ad4fc4c02bd002c2f894fa276fbd4d143e8a59eb21e05ebd62bf38e1'.
[13:30:12] 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 Thu, 4 Feb 2021 13:45:02 UTC.
[93mWarning: There is a pending transaction with nonce 480, but last committed one has 453.
This transaction will have nonce 481 and might hang if the pending transaction fails.
[0mEnter password for signing key:
.[92mTransaction '66a860eec6cebefde37f3135a597ec81997a149d3516ab8a43f27588632019d0' 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 66a860eec6cebefde37f3135a597ec81997a149d3516ab8a43f27588632019d0'.
[13:35: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 Thu, 4 Feb 2021 13:50:02 UTC.
[93mWarning: There is a pending transaction with nonce 481, but last committed one has 453.
This transaction will have nonce 482 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '320e9ae19fda590f51a1ff47f6bf45b27c2bb64cd660d61cfa14a34c963c19f5' 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 320e9ae19fda590f51a1ff47f6bf45b27c2bb64cd660d61cfa14a34c963c19f5'.
[13:40: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 Thu, 4 Feb 2021 13:55:02 UTC.
..[93mWarning: There is a pending transaction with nonce 482, but last committed one has 453.
This transaction will have nonce 483 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '04536ae87d0744d0074c88280638b127698d9106bbf859b1f5795391f8555d35' 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 04536ae87d0744d0074c88280638b127698d9106bbf859b1f5795391f8555d35'.
[13:45:12] 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 Thu, 4 Feb 2021 14:00:01 UTC.
[93mWarning: There is a pending transaction with nonce 483, but last committed one has 453.
This transaction will have nonce 484 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '488cff619534d2f0ccf3de3591f7eb90b4720108136397a71c34123156266c47' 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 488cff619534d2f0ccf3de3591f7eb90b4720108136397a71c34123156266c47'.
[13:50: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:
...
[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 Thu, 4 Feb 2021 14:05:01 UTC.
[93mWarning: There is a pending transaction with nonce 484, but last committed one has 453.
This transaction will have nonce 485 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction '2d5209fb065a26ff944caa95f1a1ba278d21ab00a8894dbce3f9082279d92759' 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 2d5209fb065a26ff944caa95f1a1ba278d21ab00a8894dbce3f9082279d92759'.
[13: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.
[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 Thu, 4 Feb 2021 15:10:02 UTC.
[93mWarning: There is a pending transaction with nonce 475, but last committed one has 453.
This transaction will have nonce 476 and might hang if the pending transaction fails.
[0mEnter password for signing key:
[92mTransaction 'd285d420b5921124ed61fe210c62ff7444eb4719e0219aa1ac5f212583c044ef' 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