From 3f46dec033e315e9d6ca01943b3e071f1dc79d48 Mon Sep 17 00:00:00 2001 From: Michele Sollecito Date: Fri, 7 Dec 2018 14:25:47 +0000 Subject: [PATCH] [CORDA-1190]: Removed confusing reference to an attachments directory in LoggingBuyerFlow in trader-demo. (#4381) --- .../main/kotlin/net/corda/traderdemo/flow/LoggingBuyerFlow.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/trader-demo/src/main/kotlin/net/corda/traderdemo/flow/LoggingBuyerFlow.kt b/samples/trader-demo/src/main/kotlin/net/corda/traderdemo/flow/LoggingBuyerFlow.kt index 841b96f594..c8bfdd9a4d 100644 --- a/samples/trader-demo/src/main/kotlin/net/corda/traderdemo/flow/LoggingBuyerFlow.kt +++ b/samples/trader-demo/src/main/kotlin/net/corda/traderdemo/flow/LoggingBuyerFlow.kt @@ -40,7 +40,7 @@ class LoggingBuyerFlow(private val otherSideSession: FlowSession) : BuyerFlow(ot cpIssuance.attachments.first().let { println(""" -The issuance of the commercial paper came with an attachment. You can find it in the attachments directory: $it.jar +The issuance of the commercial paper came with an attachment with hash $it. ${Emoji.renderIfSupported(cpIssuance)}""") }