forked from Concordium/Testnet4-Challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
300121.log
1601 lines (1542 loc) · 135 KB
/
300121.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:10:02 UTC.
Enter password for signing key:
[92mTransaction 'dbef1492d42a3c6bc54dfa683e74461c38bc1824b8f1f8b7db7c101815b0aa9b' 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 dbef1492d42a3c6bc54dfa683e74461c38bc1824b8f1f8b7db7c101815b0aa9b'.
[05:00:10] Waiting for the transaction to be committed...............
Transaction is committed into block 9a1e8cc4887569e27442cbfeaee281d07825f7c62fe45bfbb3328ffeb1eee9ff with status "success" and cost 3.007000 GTU (30070 NRG).
[05:00:42] Waiting for the transaction to be finalized....
Transaction is finalized into block 9c80c1360074e23b186f4d54b10e4e710211df389958bf44e34279cc0e3a508d with status "success" and cost 3.007000 GTU (30070 NRG).
[05:00:50] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:15:02 UTC.
Enter password for signing key:
[92mTransaction 'c020dcc287264876015145c08ae4c11fbbca01ef59b9635fe9a229643a8e8206' 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 c020dcc287264876015145c08ae4c11fbbca01ef59b9635fe9a229643a8e8206'.
[05:05:09] Waiting for the transaction to be committed..........
Transaction is finalized into block ba181a51a2263049cd82ffbd7833626c6e56797feb39ba76259c92bc9bffb5ac with status "success" and cost 3.007000 GTU (30070 NRG).
[05:05:28] Waiting for the transaction to be finalized...
[05:05:28] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:20:01 UTC.
Enter password for signing key:
[92mTransaction 'bfc4137311e7ea8ce7900a8ec7f37b08da315c62d50335ce26d02c86a300ebdc' 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 bfc4137311e7ea8ce7900a8ec7f37b08da315c62d50335ce26d02c86a300ebdc'.
[05:10:09] Waiting for the transaction to be committed..........
Transaction is committed into block e8651d2fc13e9ee444809bacdb085277ce28c60d1780f847f6df1bf6daa07be9 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:10:26] Waiting for the transaction to be finalized.........
[05:11:00] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:25:02 UTC.
Enter password for signing key:
[92mTransaction 'adb6105c69329a1631e12364e512376a3ac20ed27ceb5784eda8bb60e8c4af85' 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 adb6105c69329a1631e12364e512376a3ac20ed27ceb5784eda8bb60e8c4af85'.
[05:15:09] Waiting for the transaction to be committed...............
Transaction is committed into block 02c5bfa437f6166159858dfaf52af4d8418ebbe6fbc8717fdcafe90c01681a65 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:15:40] Waiting for the transaction to be finalized.....
[05:15:51] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:30:01 UTC.
Enter password for signing key:
[92mTransaction '339404585a15a318ef4e1060d51b6fb85a2ef03902c8b037c7a9dce12105fed6' 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 339404585a15a318ef4e1060d51b6fb85a2ef03902c8b037c7a9dce12105fed6'.
[05:20:09] Waiting for the transaction to be committed.............
Transaction is committed into block d23f588d7f71e4209955edc2bbab229d01e33131b08ee19928e3c58af5cfbd4e with status "success" and cost 3.007000 GTU (30070 NRG).
[05:20:34] Waiting for the transaction to be finalized....
[05:20:40] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:35:01 UTC.
Enter password for signing key:
[92mTransaction '54b1028cdac8bbfff8618416e1a912b8d1d808d504488f6c7a1a0bb5a7bfe1e9' 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 54b1028cdac8bbfff8618416e1a912b8d1d808d504488f6c7a1a0bb5a7bfe1e9'.
[05:25:09] Waiting for the transaction to be committed.......
Transaction is committed into block 18bea44d97da0e61ced6fccb88d681464b84880c6006a9da4a4139cd55246cbd with status "success" and cost 3.007000 GTU (30070 NRG).
[05:25:20] Waiting for the transaction to be finalized....
[05:25:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:40:01 UTC.
Enter password for signing key:
[92mTransaction '34cce69330de4277c919deb2601f48c0488b8a453a7d1e56d539b019f1c33802' 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 34cce69330de4277c919deb2601f48c0488b8a453a7d1e56d539b019f1c33802'.
[05:30:09] Waiting for the transaction to be committed.......
Transaction is committed into block 4924455b69ad504d35c5ec87d698d036bce68d152fd89a0866f06093cecac54b with status "success" and cost 3.007000 GTU (30070 NRG).
[05:30:21] Waiting for the transaction to be finalized....
[05:30:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:45:02 UTC.
Enter password for signing key:
[92mTransaction '7e2376ac6491857295fbe3806c9cae9825a8bee10c57d050b9b1a9066a8f1e2b' 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 7e2376ac6491857295fbe3806c9cae9825a8bee10c57d050b9b1a9066a8f1e2b'.
[05:35:09] Waiting for the transaction to be committed.........
Transaction is committed into block 799fe5684bc3a72ecda762f7776e7e1622cde4af50f6614b674bcd98ff76d07f with status "success" and cost 3.007000 GTU (30070 NRG).
[05:35:26] Waiting for the transaction to be finalized.......
Transaction is finalized into block 91fe0b9202e64b5d8e780649279d5bf3d0d9e06ad28b60094b41ee510f1fd744 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:35:48] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:50:01 UTC.
Enter password for signing key:
[92mTransaction '13a741a3fd3e795ff7efde987c5d1fc6db9d719b090892ffbf7a0ad773afe5a4' 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 13a741a3fd3e795ff7efde987c5d1fc6db9d719b090892ffbf7a0ad773afe5a4'.
[05:40:09] Waiting for the transaction to be committed............
Transaction is committed into block c5fa1a8f40343839a298649b659503ea3f433341aba2e7c27fd9c9cc358cda11 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:40:31] Waiting for the transaction to be finalized.........
[05:41:07] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 05:55:01 UTC.
Enter password for signing key:
[92mTransaction '4e5a44e04404e4da6cfd37f86c2743caa732b58e5b835b3630aebec3b074c6e2' 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 4e5a44e04404e4da6cfd37f86c2743caa732b58e5b835b3630aebec3b074c6e2'.
[05:45:09] Waiting for the transaction to be committed..........
Transaction is committed into block f0356cb00fb372b78d5ad68432033994d6ca2395e37bd5aa050454f3bca6f349 with status "success" and cost 3.007000 GTU (30070 NRG).
[05:45:28] Waiting for the transaction to be finalized.........
[05:46:05] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 06:00:01 UTC.
Enter password for signing key:
[92mTransaction '8098190b455b9db0d9593548fafa33f38356a331e8ace6f425b7da773f3e9955' 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 8098190b455b9db0d9593548fafa33f38356a331e8ace6f425b7da773f3e9955'.
[05:50:09] Waiting for the transaction to be committed..........................
Transaction is committed into block 434facc9b49db3df11864f392a75651a4e1d16b8f8b523e8a92cd2916549ff8c with status "success" and cost 3.007000 GTU (30070 NRG).
[05:51:06] Waiting for the transaction to be finalized....
[05:51:11] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 06:05:01 UTC.
Enter password for signing key:
[92mTransaction 'd2a483f799176e45f90f5b21f7e21643b428b00ff5f30d8c300690740dfd8d97' 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 d2a483f799176e45f90f5b21f7e21643b428b00ff5f30d8c300690740dfd8d97'.
[05:55:09] Waiting for the transaction to be committed......
Transaction is committed into block d484c40d2d2efb8a371dc5eaf8225acfe459f3d7591230a85d8bbd2095babafd with status "success" and cost 3.007000 GTU (30070 NRG).
[05:55:17] Waiting for the transaction to be finalized....
[05:55:22] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:10:02 UTC.
Enter password for signing key:
[92mTransaction '288469ef01b7102d19a300ff23a119873e85be9667b39f85b4240df7969d8553' 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 288469ef01b7102d19a300ff23a119873e85be9667b39f85b4240df7969d8553'.
[07:00:10] Waiting for the transaction to be committed...........
Transaction is committed into block d94269bb77b15465982998a607b741194ef87ddb41aeb25ee473c9912c646fc6 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:00:31] Waiting for the transaction to be finalized.....
[07:00:43] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:15:02 UTC.
Enter password for signing key:
[92mTransaction '0a9a34f75b8496363bd47bf66cfa2e4da15cf8e06d1c525fa3f448e8b0d4a55f' 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 0a9a34f75b8496363bd47bf66cfa2e4da15cf8e06d1c525fa3f448e8b0d4a55f'.
[07:05:09] Waiting for the transaction to be committed........
Transaction is committed into block 82cb50c6f017c6b9ed32c070743540e8259bf3fc0d300f06574dc713c427bb89 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:05:21] Waiting for the transaction to be finalized....
[07:05:27] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:20:01 UTC.
Enter password for signing key:
[92mTransaction '63882999455bf8bf40f23e618fd285336102211771cce1efc4d4e90a2e35ceab' 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 63882999455bf8bf40f23e618fd285336102211771cce1efc4d4e90a2e35ceab'.
[07:10:09] Waiting for the transaction to be committed........
Transaction is committed into block 6c9a1bd91c43f5d96dccd168c2122b806554548c9b86b4affb212b6cac9fa9c4 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:10:23] Waiting for the transaction to be finalized....
[07:10:29] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:25:01 UTC.
Enter password for signing key:
[92mTransaction 'af68e8c662428bd03361cff098788b3f104b595f472c9b1649db27795624a918' 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 af68e8c662428bd03361cff098788b3f104b595f472c9b1649db27795624a918'.
[07:15:09] Waiting for the transaction to be committed.........
Transaction is committed into block 10c8e489a12ced9a59704d2240a7d52823d32e5256b00dcae5ef1c695d8c2b05 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:15:25] Waiting for the transaction to be finalized.......
[07:15:47] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:30:01 UTC.
Enter password for signing key:
[92mTransaction '9d7d023178a0a48200f372de415c19b14c39e0d52967c5a30eabbb9c6b6fc9c4' 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 9d7d023178a0a48200f372de415c19b14c39e0d52967c5a30eabbb9c6b6fc9c4'.
[07:20:09] Waiting for the transaction to be committed.............
Transaction is committed into block 92433068fac36d8aee2fae816c3725204f36660c913c02342c7af7067144f937 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:20:34] Waiting for the transaction to be finalized....
[07:20:39] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:35:02 UTC.
Enter password for signing key:
[92mTransaction 'f25b77e5e9bd7c7e58e32edb8a3b02ce53ab65231431f4f272f1bba137a74a6d' 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 f25b77e5e9bd7c7e58e32edb8a3b02ce53ab65231431f4f272f1bba137a74a6d'.
[07:25:10] Waiting for the transaction to be committed.......
Transaction is finalized into block df1f246a70bcc3bb21036eee3f784e833c7c1b7da4055644714927183ec145e3 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:25:20] Waiting for the transaction to be finalized...
[07:25:20] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:40:01 UTC.
Enter password for signing key:
[92mTransaction 'baa6c3468c9641d872fb8134b2bfb2e21026b23718947b8c75da9e52ccfa45c3' 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 baa6c3468c9641d872fb8134b2bfb2e21026b23718947b8c75da9e52ccfa45c3'.
[07:30:09] Waiting for the transaction to be committed...........
Transaction is committed into block e89012817d360e5e57c2724c5dd9add6edc26c364f5f9ad1aa029a14769686a0 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:30:28] Waiting for the transaction to be finalized....
[07:30:35] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:45:01 UTC.
Enter password for signing key:
[92mTransaction '4e78c42cdeb1cd40b1b3df9a608f11442bbb943d191bc0317bee93035a5a526e' 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 4e78c42cdeb1cd40b1b3df9a608f11442bbb943d191bc0317bee93035a5a526e'.
[07:35:09] Waiting for the transaction to be committed.....................
Transaction is committed into block ad07a57ddd2bf88c5479e19344570073955a3550e3086563686b080edb62e9b9 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:35:51] Waiting for the transaction to be finalized....
[07:35:57] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:50:01 UTC.
Enter password for signing key:
[92mTransaction '96297687d82d3e8b9306cf899c8e926996302b849a8625062d3e08a5432d0259' 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 96297687d82d3e8b9306cf899c8e926996302b849a8625062d3e08a5432d0259'.
[07:40:09] Waiting for the transaction to be committed.....................
Transaction is committed into block 5080fc984aa1aa9928bb9fb15ad100973b64c1421dc252d0a7aecd626c448ea3 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:40:55] Waiting for the transaction to be finalized....
[07:41:00] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 07:55:02 UTC.
Enter password for signing key:
[92mTransaction 'e4e7e302a1f940ee4f4dcf08536aae1817eaccc4846d08ef7bdc360b4cf7c9d2' 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 e4e7e302a1f940ee4f4dcf08536aae1817eaccc4846d08ef7bdc360b4cf7c9d2'.
[07:45:10] Waiting for the transaction to be committed...................
Transaction is committed into block a2032ac5595c77523fd0a41ef5ef985929cdf1287338f4cbf486586297bad6b6 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:45:48] Waiting for the transaction to be finalized.....
[07:46:02] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 08:00:02 UTC.
Enter password for signing key:
[92mTransaction 'd83f67af97810090ca1591400a5ca37d80d1a4bc53b4ae789e13d899682df770' 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 d83f67af97810090ca1591400a5ca37d80d1a4bc53b4ae789e13d899682df770'.
[07:50:11] Waiting for the transaction to be committed.......
Transaction is committed into block d39821207bc42de7dabbceaa4fbf1252e132734fb4ac592e84aef1d5f780c969 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:50:20] Waiting for the transaction to be finalized....
[07:50:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 08:05:01 UTC.
Enter password for signing key:
[92mTransaction 'ef4d177e83fe11520a417edd93bd597442390c77329c41abf5fb1271f280b418' 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 ef4d177e83fe11520a417edd93bd597442390c77329c41abf5fb1271f280b418'.
[07:55:09] Waiting for the transaction to be committed.......
Transaction is committed into block 9ae4ad28cb3df80fd9d2f572091699c5d758e6ec6259aa2b09c853783bec3d12 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:55:24] Waiting for the transaction to be finalized.....
Transaction is finalized into block 5021a06abf5ef0929cd8d583a6894955809c5a13d7780472395580ac5aa5d9f2 with status "success" and cost 3.007000 GTU (30070 NRG).
[07:55:34] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:10:02 UTC.
Enter password for signing key:
[92mTransaction '60e04cfecd4fb9687bda3399ac8b99421f7618f2e3c1540a92eecbb73ca27f5d' 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 60e04cfecd4fb9687bda3399ac8b99421f7618f2e3c1540a92eecbb73ca27f5d'.
[09:00:10] Waiting for the transaction to be committed.................
Transaction is committed into block c56e026f1b6592a446ee8055dce66e7c3ff7c85db8acef24d809399e4a3b8c2a with status "success" and cost 3.007000 GTU (30070 NRG).
[09:00:46] Waiting for the transaction to be finalized........
[09:01:18] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:15:01 UTC.
Enter password for signing key:
[92mTransaction '362f3b925b810136b75833c0d28245dd771f0ae49f5e12f48a45997e38413f3a' 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 362f3b925b810136b75833c0d28245dd771f0ae49f5e12f48a45997e38413f3a'.
[09:05:09] Waiting for the transaction to be committed..............
Transaction is committed into block bf2ea34157664246291189865de383dfa3c8e3ecdd47c7f0e1fa2269fa81dccd with status "success" and cost 3.007000 GTU (30070 NRG).
[09:05:34] Waiting for the transaction to be finalized....
[09:05:40] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:20:01 UTC.
Enter password for signing key:
[92mTransaction '86af9f22a483aaf12d18bbe9bceab922ba75bc0846d245d7a540ede2ee5031ab' 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 86af9f22a483aaf12d18bbe9bceab922ba75bc0846d245d7a540ede2ee5031ab'.
[09:10:09] Waiting for the transaction to be committed............
Transaction is committed into block d567717a7378e3f063e8c4734c72458c8900f1611513aea1f5556a393ecf26e6 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:10:31] Waiting for the transaction to be finalized....
[09:10:37] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:25:01 UTC.
Enter password for signing key:
[92mTransaction '0231dbff289f54cc47ec6d2d60774fcab603b6a152a65584cfc2c9f8b16331a1' 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 0231dbff289f54cc47ec6d2d60774fcab603b6a152a65584cfc2c9f8b16331a1'.
[09:15:09] Waiting for the transaction to be committed...............
Transaction is committed into block b6a67711ee7677dd848897a691b4ae4c9ee23101cfd1194f287358301560db5b with status "success" and cost 3.007000 GTU (30070 NRG).
[09:15:37] Waiting for the transaction to be finalized....
[09:15:42] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:30:02 UTC.
Enter password for signing key:
[92mTransaction '1da27706ef4c5786082f12f2cd45c1dc2e3699880b24741d503d868a1c9f25dd' 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 1da27706ef4c5786082f12f2cd45c1dc2e3699880b24741d503d868a1c9f25dd'.
[09:20:10] Waiting for the transaction to be committed.......
Transaction is committed into block eb6c1525ba40ef226ac82ff076026d1d63cd1d87cc366e85ddf0e90c8df81bd2 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:20:20] Waiting for the transaction to be finalized....
[09:20:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:35:01 UTC.
Enter password for signing key:
[92mTransaction '4e583fbd3fea9ffa1d9e2bc03e77c6ac96b9445b69249d99baa87d684d8ff036' 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 4e583fbd3fea9ffa1d9e2bc03e77c6ac96b9445b69249d99baa87d684d8ff036'.
[09:25:09] Waiting for the transaction to be committed........
Transaction is committed into block 7e5ebb0c97f80834c5a17d47d87351ebb2e3fe24d32e9627c94766e5023ea6fa with status "success" and cost 3.007000 GTU (30070 NRG).
[09:25:21] Waiting for the transaction to be finalized....
[09:25:27] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:40:01 UTC.
Enter password for signing key:
[92mTransaction 'c8786be28c0f2344061c8abf7e5e41baf07e1e7806635905d4f5f848d8339eeb' 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 c8786be28c0f2344061c8abf7e5e41baf07e1e7806635905d4f5f848d8339eeb'.
[09:30:09] Waiting for the transaction to be committed......
Transaction is committed into block 185d246211225bb3e56ad53130c34eea784e8a9f7afe533db367d8f50b1b0aba with status "success" and cost 3.007000 GTU (30070 NRG).
[09:30:16] Waiting for the transaction to be finalized....
[09:30:22] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:45:01 UTC.
Enter password for signing key:
[92mTransaction '460f64f037dca4ebb182b77e149c259004d34ac18ac5166d76ed2d8effe9de5d' 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 460f64f037dca4ebb182b77e149c259004d34ac18ac5166d76ed2d8effe9de5d'.
[09:35:09] Waiting for the transaction to be committed...........
Transaction is committed into block ed9d6eda6807cc20524a5edc527351059f02eef4349b85d42ff39b57d0548dcf with status "success" and cost 3.007000 GTU (30070 NRG).
[09:35:28] Waiting for the transaction to be finalized....
[09:35:34] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:50:01 UTC.
Enter password for signing key:
[92mTransaction '419d4f6551a8eeb5c38348ac35b4ca0469740a3281af0ce92eae5156214de4fb' 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 419d4f6551a8eeb5c38348ac35b4ca0469740a3281af0ce92eae5156214de4fb'.
[09:40:09] Waiting for the transaction to be committed........
Transaction is committed into block ddda20a08f90567107f2f4f5d1ec38f99395f08d13430b5403e342053968203c with status "success" and cost 3.007000 GTU (30070 NRG).
[09:40:21] Waiting for the transaction to be finalized....
[09:40:26] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 09:55:02 UTC.
Enter password for signing key:
[92mTransaction 'ca2c38491d20c66551e66e29681ecbcbdd8774ce34ebf7841c22b3ac1b6b3cf2' 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 ca2c38491d20c66551e66e29681ecbcbdd8774ce34ebf7841c22b3ac1b6b3cf2'.
[09:45:09] Waiting for the transaction to be committed.....................
Transaction is committed into block cfda1dd5c124e573d31b2c2addb74f25474cdc393b7bd051b9680fa2d48accb2 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:45:52] Waiting for the transaction to be finalized....
[09:45:57] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 10:00:01 UTC.
Enter password for signing key:
[92mTransaction 'f593a8837ffe6c757aae6628021439d7dc7fef0f764aa6cc860efb630fd44223' 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 f593a8837ffe6c757aae6628021439d7dc7fef0f764aa6cc860efb630fd44223'.
[09:50:09] Waiting for the transaction to be committed.......
Transaction is committed into block 595878d9e2ee8a7ae0ba42091698add1766b3600c9421587c1df42d6cca6eed0 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:50:19] Waiting for the transaction to be finalized....
[09:50:25] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 10:05:01 UTC.
Enter password for signing key:
[92mTransaction '3e95f5e85a886bdea15de54ce49849dba684d65f9f46c9a718d267e6d32bc624' 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 3e95f5e85a886bdea15de54ce49849dba684d65f9f46c9a718d267e6d32bc624'.
[09:55:09] Waiting for the transaction to be committed...............
Transaction is committed into block ac83e38cd05c447e32f985bbfa9541955b424760c4b66a924661dd77aca8d1f6 with status "success" and cost 3.007000 GTU (30070 NRG).
[09:55:38] Waiting for the transaction to be finalized....
[09:55:43] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:10:02 UTC.
Enter password for signing key:
[92mTransaction 'cae7d96e36ca1c0680933e4f8173306919bb26e4622d6365e9da96c3786defcf' 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 cae7d96e36ca1c0680933e4f8173306919bb26e4622d6365e9da96c3786defcf'.
[11:00:10] Waiting for the transaction to be committed......
Transaction is committed into block 31cd9984840838c61014641b7e42edcf09ee9c9293080fc9d67c914710db76f3 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:00:18] Waiting for the transaction to be finalized....
[11:00:25] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:15:02 UTC.
Enter password for signing key:
[92mTransaction 'a8b601084e599c76d44d89f8485c62b0f326ae162a74b95be0664b69ef916965' 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 a8b601084e599c76d44d89f8485c62b0f326ae162a74b95be0664b69ef916965'.
[11:05:09] Waiting for the transaction to be committed.....
Transaction is committed into block 261942e35e9fb4474fb644a8529961c9d6565d9939da816eaf8d81649b78be59 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:05:16] Waiting for the transaction to be finalized.....
[11:05:27] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:20:02 UTC.
Enter password for signing key:
[92mTransaction 'f4fb2ef2090b32252cd1ff77673fd18534664dccbcf40d2c640cd6890bf1cf99' 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 f4fb2ef2090b32252cd1ff77673fd18534664dccbcf40d2c640cd6890bf1cf99'.
[11:10:09] Waiting for the transaction to be committed.....................
Transaction is committed into block 753be264705c5e8e21677b69771dcf38742d5bcaba5f1e17590e5b5325dbff7f with status "success" and cost 3.007000 GTU (30070 NRG).
[11:10:53] Waiting for the transaction to be finalized......
[11:11:12] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:25:02 UTC.
Enter password for signing key:
[92mTransaction '3560d2e151eb9e4506cdabca0193f347d7b5aa9ab7ad920fbeb856bbb165bc33' 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 3560d2e151eb9e4506cdabca0193f347d7b5aa9ab7ad920fbeb856bbb165bc33'.
[11:15:10] Waiting for the transaction to be committed.......
Transaction is committed into block 14e2f9390996531cf4887e63f0db226e25bb6314c7875c706f27e110ebdb1bad with status "success" and cost 3.007000 GTU (30070 NRG).
[11:15:19] Waiting for the transaction to be finalized....
[11:15:24] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:30:02 UTC.
Enter password for signing key:
[92mTransaction '59100547295eb53f4a441712a051c5e2088e5ced50dc1076b89f562477745027' 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 59100547295eb53f4a441712a051c5e2088e5ced50dc1076b89f562477745027'.
[11:20:11] Waiting for the transaction to be committed..................
Transaction is committed into block 9f384b3166932b6d74db6bef3c595d005c26f69573e7188082e7df307e43028b with status "success" and cost 3.007000 GTU (30070 NRG).
[11:20:52] Waiting for the transaction to be finalized.......
Transaction is finalized into block c582a56fae8e3853702408d65ac48cdc2bee322faaaa38c4217906c34579bb74 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:21:28] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:35:02 UTC.
Enter password for signing key:
[92mTransaction '2b7aafe4bebe7441df92306b8820f193cd7b98c20e56743f86144b8df51a87c1' 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 2b7aafe4bebe7441df92306b8820f193cd7b98c20e56743f86144b8df51a87c1'.
[11:25:10] Waiting for the transaction to be committed............
Transaction is committed into block c07e03d6a7292843e1a6803d5563ce85a02e79a30d7cf749ed6fddc2e532881c with status "success" and cost 3.007000 GTU (30070 NRG).
[11:25:36] Waiting for the transaction to be finalized....
[11:25:42] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:40:01 UTC.
Enter password for signing key:
[92mTransaction 'cbcf0ab32e3659f68aa953f6fd89f83085aedfb562fad3a457f920a360ebb5c9' 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 cbcf0ab32e3659f68aa953f6fd89f83085aedfb562fad3a457f920a360ebb5c9'.
[11:30:09] Waiting for the transaction to be committed...........
Transaction is committed into block 32f35f9669153265f7a87b79bae40fe7e0365d8d835660ff0fe5fbd225588b01 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:30:29] Waiting for the transaction to be finalized......
[11:30:45] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:45:02 UTC.
Enter password for signing key:
[92mTransaction '6de61214afb315dd19174d1eba764afc88ea11ec3b76fd24ad2e890eecd289ff' 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 6de61214afb315dd19174d1eba764afc88ea11ec3b76fd24ad2e890eecd289ff'.
[11:35:10] Waiting for the transaction to be committed.................
Transaction is committed into block a985e362557bcb198da1f64189d36a9df7671e508cdc8e87c3a03152e4f13057 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:35:45] Waiting for the transaction to be finalized.....
[11:35:56] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:50:02 UTC.
Enter password for signing key:
[92mTransaction 'd71084f3742fd39026125f85b00f7e1eac09dc861803e440233d5ac4720e0d2d' 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 d71084f3742fd39026125f85b00f7e1eac09dc861803e440233d5ac4720e0d2d'.
[11:40:09] Waiting for the transaction to be committed.............
Transaction is committed into block a75f639e66e9559052287250a1e4b89c5306d273507c4cd458d2797a3f64881a with status "success" and cost 3.007000 GTU (30070 NRG).
[11:40:33] Waiting for the transaction to be finalized.....
[11:40:45] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 11:55:01 UTC.
Enter password for signing key:
[92mTransaction 'd31adfdd38f583b8bfa1f73a5a9bfaf201fa5cbc687ef124e7e0e28a2d48d77f' 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 d31adfdd38f583b8bfa1f73a5a9bfaf201fa5cbc687ef124e7e0e28a2d48d77f'.
[11:45:09] Waiting for the transaction to be committed.......
Transaction is committed into block 0f6ba1debd1bec919672a10c282f8dda946f042e7552e34be077e8dcbe263f04 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:45:19] Waiting for the transaction to be finalized.......
[11:45:42] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 12:00:02 UTC.
Enter password for signing key:
[92mTransaction 'b3a5ca0220c532b0af98fd149696cfb294100dc0a20ef6a24b0c991bab70cf76' 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 b3a5ca0220c532b0af98fd149696cfb294100dc0a20ef6a24b0c991bab70cf76'.
[11:50:10] Waiting for the transaction to be committed...........
Transaction is committed into block aff6512264064d1d56d5153fb6d3d4a8a84bcb7456b656a0ae10fa45ad68b14d with status "success" and cost 3.007000 GTU (30070 NRG).
[11:50:30] Waiting for the transaction to be finalized....
[11:50:35] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 12:05:02 UTC.
Enter password for signing key:
[92mTransaction 'cee1a97bd4cbc7b657dada27614b00c2dcca0c79158c6f8d90dc392b4218b206' 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 cee1a97bd4cbc7b657dada27614b00c2dcca0c79158c6f8d90dc392b4218b206'.
[11:55:09] Waiting for the transaction to be committed.......................
Transaction is committed into block f4c550ac30c5ab271312038f3cd2fc2e8dbff66b91e27f62bfc3c4e4aa333f96 with status "success" and cost 3.007000 GTU (30070 NRG).
[11:55:56] Waiting for the transaction to be finalized....
[11:56:02] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:10:02 UTC.
Enter password for signing key:
[92mTransaction '48bc7e0df21eed5c98a80d49c5acc242701735534abce56a5e2ba0ce543e7848' 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 48bc7e0df21eed5c98a80d49c5acc242701735534abce56a5e2ba0ce543e7848'.
[13:00:10] Waiting for the transaction to be committed......................
Transaction is committed into block 32172a242a2405a488293fcbfcd3139954f56af4eb59cceca3b8fdcab490f671 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:01:00] Waiting for the transaction to be finalized...........
Transaction is finalized into block ea6594297aeea6c6d66acf7db9805e3a5eeccdbbd22a0a7f5f5c35b689c5ae9b with status "success" and cost 3.007000 GTU (30070 NRG).
[13:01:56] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:15:02 UTC.
Enter password for signing key:
[92mTransaction '22d3f96eefb5d67dd70a227bb23d8b09cdc3539273112cbd1c0a75f32ac7c4e5' 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 22d3f96eefb5d67dd70a227bb23d8b09cdc3539273112cbd1c0a75f32ac7c4e5'.
[13:05:10] Waiting for the transaction to be committed.........
Transaction is committed into block a4b874809a9d15cbc35d6c715f486637ddcf83cc3f0b9e7a63c6c84a00376110 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:05:25] Waiting for the transaction to be finalized....
[13:05:31] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:20:01 UTC.
Enter password for signing key:
[92mTransaction 'e938c327bfa0e421dac047e344fcb6e2c190a516024a84496ed8266541fbb26c' 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 e938c327bfa0e421dac047e344fcb6e2c190a516024a84496ed8266541fbb26c'.
[13:10:09] Waiting for the transaction to be committed.............
Transaction is committed into block b5d1c54f0c80bb7dd05ee10d891afb76f63cb5c161e78552ead56057ce2105aa with status "success" and cost 3.007000 GTU (30070 NRG).
[13:10:33] Waiting for the transaction to be finalized....
[13:10:38] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:25:02 UTC.
Enter password for signing key:
[92mTransaction '78521e86aecc9ce8f649815640dc2c2a0d2c4cc762990b73804c1c12afa7f728' 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 78521e86aecc9ce8f649815640dc2c2a0d2c4cc762990b73804c1c12afa7f728'.
[13:15:09] Waiting for the transaction to be committed...........
Transaction is committed into block 24cebe1a36ebccb0aa0f87e353878c57d4c1cefc226823f8ef3ed6bfcda6c19c with status "success" and cost 3.007000 GTU (30070 NRG).
[13:15:30] Waiting for the transaction to be finalized.....
Transaction is finalized into block 36bd322cc49c077287236f685b9e12269f0fc0d62b404a6b40511a4728df4a9a with status "success" and cost 3.007000 GTU (30070 NRG).
[13:15:44] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:30:01 UTC.
Enter password for signing key:
[92mTransaction '1dcea5c5c940d3e813c5c88c743a80747fa069192ec415e3738d70e80b1927e1' 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 1dcea5c5c940d3e813c5c88c743a80747fa069192ec415e3738d70e80b1927e1'.
[13:20:09] Waiting for the transaction to be committed.......
Transaction is committed into block 3cc5e35da8fc82c3d81dcf2cb218d7cdc9549fa3554a84c90baafb55a585c1ef with status "success" and cost 3.007000 GTU (30070 NRG).
[13:20:19] Waiting for the transaction to be finalized....
[13:20:24] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:35:02 UTC.
Enter password for signing key:
[92mTransaction 'fd3a403a79bf53a3a87cc297a55c48fb80303b89f2f87aa217c4e594b2e1e83d' 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 fd3a403a79bf53a3a87cc297a55c48fb80303b89f2f87aa217c4e594b2e1e83d'.
[13:25:09] Waiting for the transaction to be committed...................
Transaction is committed into block 6829720982aa049a017a0a857322ed629147a85baa7b3827deb0ae6acda02de4 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:25:48] Waiting for the transaction to be finalized....
[13:25:53] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:40:02 UTC.
Enter password for signing key:
[92mTransaction '1ab269f29f7f6f7262fae037c633bf71ae5a9d54c2a4e1e269f7c0505cdac39a' 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 1ab269f29f7f6f7262fae037c633bf71ae5a9d54c2a4e1e269f7c0505cdac39a'.
[13:30:10] Waiting for the transaction to be committed..........
Transaction is committed into block 3b77e5fa08f3f693ede9b3db68272ccdeb7f0284528f96286b306be7144a1b49 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:30:29] Waiting for the transaction to be finalized.........
[13:31:01] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:45:01 UTC.
Enter password for signing key:
[92mTransaction 'd4c08d287a7b20d9cb5125438ddcf584b42756b4a03ddbc29a2ea0015e108ccd' 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 d4c08d287a7b20d9cb5125438ddcf584b42756b4a03ddbc29a2ea0015e108ccd'.
[13:35:09] Waiting for the transaction to be committed.......
Transaction is committed into block 10d976a911528eee6143081b426815a44eac504e4e3f8ff7b0d65e9394d68cf1 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:35:20] Waiting for the transaction to be finalized....
[13:35:25] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:50:02 UTC.
Enter password for signing key:
[92mTransaction '05a4c45426e7d458358546721c491b775048491413f84454d139cc781ac5fe9f' 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 05a4c45426e7d458358546721c491b775048491413f84454d139cc781ac5fe9f'.
[13:40:10] Waiting for the transaction to be committed..............
Transaction is committed into block e42dbde18a450873551c7f36ddad55258425993d62b9f735446a34a523c95b51 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:40:39] Waiting for the transaction to be finalized.........
[13:41:24] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 13:55:02 UTC.
Enter password for signing key:
[92mTransaction '779cb311b128e50a0bfd4b560986bc521737829d7be15fd49025e9c2009b2956' 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 779cb311b128e50a0bfd4b560986bc521737829d7be15fd49025e9c2009b2956'.
[13:45:09] Waiting for the transaction to be committed.......
Transaction is committed into block 9b25465946d39b8f4a29baea0188a0ac8ad5e379f347c4c7272db75f080f2a0c with status "success" and cost 3.007000 GTU (30070 NRG).
[13:45:21] Waiting for the transaction to be finalized.........
[13:45:54] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 14:00:01 UTC.
Enter password for signing key:
[92mTransaction '641e600f1c1b2daf3817ea9a8563f4791abeea362622632c8952df6188c57833' 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 641e600f1c1b2daf3817ea9a8563f4791abeea362622632c8952df6188c57833'.
[13:50:09] Waiting for the transaction to be committed..........
Transaction is committed into block 91e75c410eb5effe26744638058a7aa3440044b986da96de64255e382c18cce8 with status "success" and cost 3.007000 GTU (30070 NRG).
[13:50:28] Waiting for the transaction to be finalized....
[13:50:34] Transaction finalized.
spawn ./concordium-client --grpc-ip 127.0.0.01 --grpc-port 10000 transaction send-gtu-encrypted --receiver 44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV --amount 0.1 --sender 35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR --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 '35zHdrfp7xrAd5YHbDPRgnHY1oaap7wGmesXcXEXkxedggcxqR' (Ugur) to '44Po5A7gQbMD3QqggtQxKagQvUQnTkF6GqyCTfWNqD1egLBeEV'.
Allowing up to 30070 NRG to be spent as transaction fee.
Transaction expires at Sat, 30 Jan 2021 14:05:01 UTC.
Enter password for signing key:
[92mTransaction '917917659cc4a331b12319b06e3788816870ea1615ad0ce7995cc91822756c76' 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