-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimpleFTP.daml
774 lines (697 loc) · 36 KB
/
SimpleFTP.daml
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
module SimpleFTP where
import Daml.Script
data TaskResult_ENUM =
Complete| NotComplete | Finalizing | Rejected | Cancelled | Error
deriving (Enum, Show, Eq)
template Client
with
user : Party
name : Text
icelist : [Text]
where
signatory user
key (user, name) : (Party, Text)
maintainer key._1
choice CreateOffer : ContractId TaskProposal
with
request_recv_client : Client
request_filename : Text
request_filesz_kb : Int
controller user
do create TaskProposal
with
creator = user
originator = this
counterparty = request_recv_client
filename = request_filename
filesz_kb = request_filesz_kb
nonconsuming choice CountIcelist : Int
controller user
do
let result = foldl (\acc i -> acc + 1) 0 icelist;
return result;
template TaskProposal
with
creator : Party
originator : Client
counterparty : Client
filename : Text
filesz_kb : Int
where
signatory originator.user
observer counterparty.user
nonconsuming choice Accept : ContractId TransferTask
controller counterparty.user
do
create TransferTask
with
send_client = originator
recv_client = counterparty
listening = False
initialized = False
sending_confirmed = False
receiving_confirmed = False
memo = Some "Cancelled"
result = NotComplete
result_reason = "(new)"
nonconsuming choice Reject : ContractId TransferTask
with
reject_reason : Text
controller counterparty.user
do
create TransferTask
with
send_client = originator
recv_client = counterparty
listening = False
initialized = False
sending_confirmed = False
receiving_confirmed = False
memo = Some "Rejected"
result = Rejected
result_reason = reject_reason
nonconsuming choice Cancel : ContractId TransferTask
with
cancel_reason : Text
controller originator.user
do
create TransferTask
with
send_client = originator
recv_client = counterparty
listening = False
initialized = False
sending_confirmed = False
receiving_confirmed = False
memo = Some "Cancelled"
result = Cancelled
result_reason = cancel_reason
template TransferTask
with
send_client : Client
recv_client : Client
listening : Bool
initialized : Bool
sending_confirmed : Bool
receiving_confirmed : Bool
memo : Optional Text
result : TaskResult_ENUM
result_reason : Text
where
signatory send_client.user
observer recv_client.user
choice Listen : ContractId TransferTask
controller recv_client.user
do
create this with
listening = True
choice Initialize : ContractId TransferTask
controller send_client.user
do
assertMsg ("Receiving Counterparty not listening") (listening)
create this with initialized = True
choice NotifySending : ContractId TransferTask
controller send_client.user
do
assertMsg ("Sending Originator not initialized") (initialized)
create this with sending_confirmed = True
choice NotifyReceiving : ContractId TransferTask
controller recv_client.user
do
create this with receiving_confirmed = True
choice NotifySendingComplete : ContractId TransferTask
controller send_client.user
do
create this with
sending_confirmed = True
result = (if receiving_confirmed then Complete else Finalizing)
result_reason = (if receiving_confirmed then "Complete" else "Finalizing")
choice NotifyReceivingComplete : ContractId TransferTask
controller recv_client.user
do
create this with
receiving_confirmed = True
result = (if sending_confirmed then Complete else Finalizing)
result_reason = (if sending_confirmed then "Complete" else "Finalizing")
scenario_propose_transfer_complete = script do
let sTAG = "[SCENARIO 1] Propose Transfer Complete"
party_a <- allocateParty "Party A"
party_b <- allocateParty "Party B"
debug "==================================="
debug "[SETUP] Step 1:"
debug "-----------------------------------"
debug "Creating 2 Clients (A,B)"
debug "..................................."
debug ""
debug ""
client_a <- submit party_a do
createCmd Client with
user = party_a
name = "[Client A]"
icelist = ["localhost:9090", "0.0.0.0:9090"]
client_b <- submit party_b do
createCmd Client with
user = party_b
name = "[Client B]"
icelist = ["localhost:9091", "0.0.0.0:9091"]
debug "==================================="
debug "[SETUP] Step 2:"
debug "-----------------------------------"
debug "Gathering Peers (hard-coded)"
debug "..................................."
debug ""
debug ""
peers <- queryFilter @Client [party_a, party_b] (const True)
debug peers
debug "==================================="
debug "[SETUP] Step 3:"
debug "-----------------------------------"
debug "Creating TaskProposals"
debug "..................................."
debug ""
debug ""
clientA <- queryContractId party_a client_a
clientB <- queryContractId party_b client_b
case clientA of
Some clientA -> do
case clientB of
Some clientB -> do
debug clientA
debug clientB
task_proposal_ab <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientB
filename = "filename"
filesz_kb = 144
debug "==================================="
debug "[SETUP] Step 4:"
debug "-----------------------------------"
debug "Rejecting One Task Proposal, Accepting the Other"
debug "'Accept' creates a new TransferTask"
debug "..................................."
debug ""
debug ""
-- Test Accept (By Counterparty Only)
transfer_task <- submit party_b do exerciseCmd task_proposal_ab Accept
debug "==================================="
debug "[SETUP] Step 5:"
debug "-----------------------------------"
debug "Notify TransferTask Listening and Initialized"
debug ""
debug "..................................."
debug ""
debug ""
transfer_task <- submit party_b do exerciseCmd transfer_task Listen
transfer_task <- submit party_a do exerciseCmd transfer_task Initialize
debug "==================================="
debug "[SETUP] Step 6:"
debug "-----------------------------------"
debug "Notify TransferTask Sending and Receiving"
debug ""
debug "..................................."
debug ""
debug ""
transfer_task <- submit party_a do exerciseCmd transfer_task NotifySending
transfer_task <- submit party_b do exerciseCmd transfer_task NotifyReceiving
debug "==================================="
debug "[SETUP] Step 7:"
debug "-----------------------------------"
debug "Record TransferTask Sending and Receiving"
debug " completion status"
debug "..................................."
debug ""
debug ""
transfer_task <- submit party_a do exerciseCmd transfer_task NotifySendingComplete
transfer_task <- submit party_b do exerciseCmd transfer_task NotifyReceivingComplete
pure()
None -> do
error "bad news"
None -> do
error "bad news"
pure()
scenario_propose_transfer_recv_reject = script do
let sTAG = "[SCENARIO 2] Propose Transfer Recv Reject"
party_a <- allocateParty "Party A"
party_b <- allocateParty "Party B"
debug "==================================="
debug "[SETUP] Step 1:"
debug "-----------------------------------"
debug "Creating 2 Clients (A,B)"
debug "..................................."
debug ""
debug ""
client_a <- submit party_a do
createCmd Client with
user = party_a
name = "[Client A]"
icelist = ["localhost:9090", "0.0.0.0:9090"]
client_b <- submit party_b do
createCmd Client with
user = party_b
name = "[Client B]"
icelist = ["localhost:9091", "0.0.0.0:9091"]
debug "==================================="
debug "[SETUP] Step 2:"
debug "-----------------------------------"
debug "Gathering Peers (hard-coded)"
debug "..................................."
debug ""
debug ""
peers <- queryFilter @Client [party_a, party_b] (const True)
debug peers
debug "==================================="
debug "[SETUP] Step 3:"
debug "-----------------------------------"
debug "Creating 2 TaskProposals (A->B, A->C)"
debug "..................................."
debug ""
debug ""
clientA <- queryContractId party_a client_a
clientB <- queryContractId party_b client_b
case clientA of
Some clientA -> do
case clientB of
Some clientB -> do
debug clientA
debug clientB
task_proposal_ab <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientB
filename = "filename"
filesz_kb = 144
debug "==================================="
debug "[SETUP] Step 4:"
debug "-----------------------------------"
debug "Rejecting One Task Proposal, Accepting the Other"
debug "'Accept' creates a new TransferTask"
debug "..................................."
debug ""
debug ""
transfer_task <- submit party_b do exerciseCmd task_proposal_ab Reject with {reject_reason="Rejected!"}
Some ttsk <- queryContractId party_b transfer_task
assertMsg "Only Receiver May Reject" (ttsk.memo == Some "Rejected")
pure()
pure()
None -> do
error "bad news"
None -> do
error "bad news"
pure()
scenario_propose_transfer_send_cancel = script do
let sTAG = "[SCENARIO 3] Propose Transfer Send Cancel"
party_a <- allocateParty "Party A"
party_b <- allocateParty "Party B"
debug "==================================="
debug "[SETUP] Step 1:"
debug "-----------------------------------"
debug "Creating 2 Clients (A,B)"
debug "..................................."
debug ""
debug ""
client_a <- submit party_a do
createCmd Client with
user = party_a
name = "[Client A]"
icelist = ["localhost:9090", "0.0.0.0:9090"]
client_b <- submit party_b do
createCmd Client with
user = party_b
name = "[Client B]"
icelist = ["localhost:9091", "0.0.0.0:9091"]
count <- submit party_b do exerciseCmd client_b CountIcelist
assertMsg "Test CountIceList" ( count == 2)
debug "==================================="
debug "[SETUP] Step 2:"
debug "-----------------------------------"
debug "Gathering Peers (hard-coded)"
debug "..................................."
debug ""
debug ""
peers <- queryFilter @Client [party_a, party_b] (const True)
debug peers
debug "==================================="
debug "[SETUP] Step 3:"
debug "-----------------------------------"
debug "Creating TaskProposals"
debug "..................................."
debug ""
debug ""
clientA <- queryContractId party_a client_a
clientB <- queryContractId party_b client_b
case clientA of
Some clientA -> do
case clientB of
Some clientB -> do
debug clientA
debug clientB
task_proposal_ab <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientB
filename = "filename"
filesz_kb = 144
debug "==================================="
debug "[SETUP] Step 4:"
debug "-----------------------------------"
debug "Rejecting One Task Proposal, Accepting the Other"
debug "'Accept' creates a new TransferTask"
debug "..................................."
debug ""
debug ""
-- Test Cancel (By Sender Only)
transfer_task <- submit party_a do exerciseCmd task_proposal_ab Cancel with {cancel_reason="Cancelled!"}
Some ttsk <- queryContractId party_a transfer_task
assertMsg "Only Sender May Cancel" (ttsk.memo == Some "Cancelled")
pure()
None -> do
error "bad news"
None -> do
error "bad news"
pure()
-- scenario_propose_transfer_send_cancel = script do
-- --===============================================================================================================
-- let sTAG = "[SCENARIO 3] Propose Transfer Send Reject"
-- --===============================================================================================================
-- party_a <- allocateParty "Party A"
-- party_b <- allocateParty "Party B"
-- debug "==================================="
-- debug "[SETUP] Step 1:"
-- debug "-----------------------------------"
-- debug "Creating 2 Clients (A,B)"
-- debug "..................................."
-- debug ""
-- debug ""
-- client_a <- submit party_a do
-- createCmd Client with
-- user = party_a
-- name = "[Client A]"
-- icelist = ["localhost:9090", "0.0.0.0:9090"]
-- client_b <- submit party_b do
-- createCmd Client with
-- user = party_b
-- name = "[Client B]"
-- icelist = ["localhost:9091", "0.0.0.0:9091"]
-- debug "==================================="
-- debug "[SETUP] Step 2:"
-- debug "-----------------------------------"
-- debug "Gathering Peers (hard-coded)"
-- debug "..................................."
-- debug ""
-- debug ""
-- peers <- queryFilter @Client [party_a, party_b] (const True)
-- debug peers
-- debug "==================================="
-- debug "[SETUP] Step 3:"
-- debug "-----------------------------------"
-- debug "Creating TaskProposals
-- debug "..................................."
-- debug ""
-- debug ""
-- clientA <- queryContractId party_a client_a
-- clientB <- queryContractId party_b client_b
-- case clientA of
-- Some clientA -> do
-- case clientB of
-- Some clientB -> do
-- debug clientA
-- debug clientB
-- task_proposal_ab <- submit party_a do
-- createCmd TaskProposal with
-- creator = party_a
-- originator = clientA
-- counterparty = clientB
-- filename = "filename"
-- filesz_kb = 144
-- debug "==================================="
-- debug "[SETUP] Step 4:"
-- debug "-----------------------------------"
-- debug "Rejecting One Task Proposal, Accepting the Other"
-- debug "'Accept' creates a new TransferTask"
-- debug "..................................."
-- debug ""
-- debug ""
-- -- Test Accept (By Counterparty Only)
-- transfer_task <- submit party_b do exerciseCmd task_proposal_ab Accept
-- -- Test Reject (By Counterparty Only)
-- transfer_task <- submitMustFail party_a do exerciseCmd task_proposal_ab Reject with {reject_reason="Rejected!"}
-- transfer_task <- submit party_c do exerciseCmd task_proposal_ab Reject with {reject_reason="Rejected!"}
-- -- Test Cancel (By Sender Only)
-- transfer_task <- submitMustFail party_d do exerciseCmd task_proposal_ab Cancel with {cancel_reason="Cancelled!"}
-- transfer_task <- submit party_a do exerciseCmd task_proposal_ab Cancel with {cancel_reason="Cancelled!"}
-- debug "==================================="
-- debug "[SETUP] Step 5:"
-- debug "-----------------------------------"
-- debug "Notify TransferTask Listening and Initialized"
-- debug ""
-- debug "..................................."
-- debug ""
-- debug ""
-- transfer_task1 <- submit party_b do exerciseCmd transfer_task1 Listen
-- transfer_task1 <- submit party_a do exerciseCmd transfer_task1 Initialize
-- debug "==================================="
-- debug "[SETUP] Step 6:"
-- debug "-----------------------------------"
-- debug "Notify TransferTask Sending and Receiving"
-- debug ""
-- debug "..................................."
-- debug ""
-- debug ""
-- transfer_task1 <- submit party_a do exerciseCmd transfer_task1 NotifySending
-- transfer_task1 <- submit party_b do exerciseCmd transfer_task1 NotifyReceiving
-- debug "==================================="
-- debug "[SETUP] Step 7:"
-- debug "-----------------------------------"
-- debug "Record TransferTask Sending and Receiving"
-- debug " completion status"
-- debug "..................................."
-- debug ""
-- debug ""
-- transfer_task1 <- submit party_a do exerciseCmd transfer_task1 NotifySendingComplete
-- transfer_task1 <- submit party_b do exerciseCmd transfer_task1 NotifyReceivingComplete
-- pure()
-- None -> do
-- error "bad news"
-- None -> do
-- error "bad news"
-- pure()
setup : Script ()
setup = do
let sTAG = "[SETUP]"
party_a <- allocateParty "Party A"
party_b <- allocateParty "Party B"
party_c <- allocateParty "Party C"
party_d <- allocateParty "Party D"
party_e <- allocateParty "Party E"
party_f <- allocateParty "Party F"
debug "==================================="
debug "[SETUP] Step 1:"
debug "-----------------------------------"
debug "Creating 3 Clients (A,B,C)"
debug "..................................."
debug ""
debug ""
client_a <- submit party_a do
createCmd Client with
user = party_a
name = "[Client A]"
icelist = ["localhost:9090", "0.0.0.0:9090"]
client_b <- submit party_b do
createCmd Client with
user = party_b
name = "[Client B]"
icelist = ["localhost:9091", "0.0.0.0:9091"]
client_c <- submit party_c do
createCmd Client with
user = party_c
name = "[Client C]"
icelist = ["localhost:9092", "0.0.0.0:9092"]
client_d <- submit party_d do
createCmd Client with
user = party_d
name = "[Client D]"
icelist = ["localhost:9093", "0.0.0.0:9093"]
client_e <- submit party_e do
createCmd Client with
user = party_e
name = "[Client E]"
icelist = ["localhost:9094", "0.0.0.0:9094"]
client_f <- submit party_f do
createCmd Client with
user = party_f
name = "[Client F]"
icelist = ["localhost:9095", "0.0.0.0:9095"]
debug "==================================="
debug "[SETUP] Step 2:"
debug "-----------------------------------"
debug "Gathering Peers (hard-coded)"
debug "..................................."
debug ""
debug ""
peers <- queryFilter @Client [party_a, party_b, party_c] (const True)
debug peers
debug "==================================="
debug "[SETUP] Step 3:"
debug "-----------------------------------"
debug "Creating 2 TaskProposals (A->B, A->C)"
debug "..................................."
debug ""
debug ""
clientA <- queryContractId party_a client_a
clientB <- queryContractId party_b client_b
clientC <- queryContractId party_c client_c
clientD <- queryContractId party_d client_d
clientE <- queryContractId party_e client_e
clientF <- queryContractId party_f client_f
case clientA of
Some clientA -> do
case clientB of
Some clientB -> do
case clientC of
Some clientC -> do
case clientD of
Some clientD -> do
case clientE of
Some clientE -> do
case clientF of
Some clientF -> do
debug clientA
debug clientB
debug clientC
debug clientD
debug clientE
debug clientF
task_proposal_ab <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientB
filename = "filename"
filesz_kb = 144
task_proposal_ac <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientC
filename = "filename"
filesz_kb = 144
task_proposal_ad <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientD
filename = "filename"
filesz_kb = 144
task_proposal_ae <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientE
filename = "filename"
filesz_kb = 144
task_proposal_af <- submit party_a do
createCmd TaskProposal with
creator = party_a
originator = clientA
counterparty = clientF
filename = "filename"
filesz_kb = 144
debug "==================================="
debug "[SETUP] Step 4:"
debug "-----------------------------------"
debug "Rejecting One Task Proposal, Accepting the Other"
debug "'Accept' creates a new TransferTask"
debug "..................................."
debug ""
debug ""
-- Test Accept (By Counterparty Only)
transfer_task1 <- submit party_b do exerciseCmd task_proposal_ab Accept
transfer_task4 <- submit party_e do exerciseCmd task_proposal_ae Accept
transfer_task5 <- submit party_f do exerciseCmd task_proposal_af Accept
-- Test Reject (By Counterparty Only)
transfer_task2 <- submitMustFail party_a do
exerciseCmd task_proposal_ac Reject with {reject_reason="Rejected!"}
transfer_task2 <- submit party_c do
exerciseCmd task_proposal_ac Reject with {reject_reason="Rejected!"}
-- Test Cancel (By Sender Only)
transfer_task3 <- submitMustFail party_d do
exerciseCmd task_proposal_ad Cancel with {cancel_reason="Cancelled!"}
transfer_task3 <- submit party_a do
exerciseCmd task_proposal_ad Cancel with {cancel_reason="Cancelled!"}
debug "==================================="
debug "[SETUP] Step 5:"
debug "-----------------------------------"
debug "Notify TransferTask Listening and Initialized"
debug ""
debug "..................................."
debug ""
debug ""
transfer_task1 <- submit party_b do
exerciseCmd transfer_task1 Listen
transfer_task1 <- submit party_a do
exerciseCmd transfer_task1 Initialize
transfer_task4 <- submit party_e do
exerciseCmd transfer_task4 Listen
transfer_task4 <- submit party_a do
exerciseCmd transfer_task4 Initialize
transfer_task5 <- submit party_f do
exerciseCmd transfer_task5 Listen
transfer_task5 <- submit party_a do
exerciseCmd transfer_task5 Initialize
debug "==================================="
debug "[SETUP] Step 6:"
debug "-----------------------------------"
debug "Notify TransferTask Sending and Receiving"
debug ""
debug "..................................."
debug ""
debug ""
transfer_task1 <- submit party_a do
exerciseCmd transfer_task1 NotifySending
transfer_task1 <- submit party_b do
exerciseCmd transfer_task1 NotifyReceiving
transfer_task4 <- submit party_a do
exerciseCmd transfer_task4 NotifySending
transfer_task4 <- submit party_e do
exerciseCmd transfer_task4 NotifyReceiving
transfer_task5 <- submit party_a do
exerciseCmd transfer_task5 NotifySending
transfer_task5 <- submit party_f do
exerciseCmd transfer_task5 NotifyReceiving
debug "==================================="
debug "[SETUP] Step 7:"
debug "-----------------------------------"
debug "Record TransferTask Sending and Receiving"
debug " completion status"
debug "..................................."
debug ""
debug ""
transfer_task1 <- submit party_a do
exerciseCmd transfer_task1 NotifySendingComplete
transfer_task1 <- submit party_b do
exerciseCmd transfer_task1 NotifyReceivingComplete
transfer_task4 <- submit party_a do
exerciseCmd transfer_task4 NotifySendingComplete
transfer_task4 <- submit party_e do
exerciseCmd transfer_task4 NotifyReceivingComplete
transfer_task5 <- submit party_a do
exerciseCmd transfer_task5 NotifySendingComplete
transfer_task5 <- submit party_f do
exerciseCmd transfer_task5 NotifyReceivingComplete
pure()
None -> do
error "bad news"
None -> do
error "bad news"
None -> do
error "bad news"
None -> do
error "bad news"
None -> do
error "bad news"
None -> do
error "bad news"