File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Tokens/bikemarket/workflows/src/main/java/net/corda/examples/bikemarket/flows Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,10 @@ public String call() throws FlowException {
6767 SignedTransaction ptx = getServiceHub ().signInitialTransaction (txBuilder );
6868 SignedTransaction stx = subFlow (new CollectSignaturesFlow (ptx , Collections .singletonList (sellerSession )));
6969
70- // Update the distribution list
71- subFlow (new UpdateDistributionListFlow (stx ));
7270 SignedTransaction ftx = subFlow (new ObserverAwareFinalityFlow (stx , Collections .singletonList (sellerSession )));
7371
72+ // Update the distribution list
73+ subFlow (new UpdateDistributionListFlow (stx ));
7474 return "Transfer ownership of the frame (" +this .frameModel +") to" +this .holder .getName ().getOrganisation ()
7575 + "\n Transaction ID: " + ftx .getId ();
7676
You can’t perform that action at this time.
0 commit comments