Release fixes (#812)

* Small fixes in IRS and attachments demos.

* Docs fixes.

* Add information about `flow watch` command to documentation.

* Add note on IRS demo
This commit is contained in:
Katarzyna Streich
2017-06-08 14:31:35 +01:00
committed by GitHub
parent 1f28a60fca
commit 553ce9b2b2
5 changed files with 26 additions and 18 deletions

View File

@ -73,6 +73,6 @@ class TraderDemoClientApi(val rpc: CordaRPCOps) {
// The line below blocks and waits for the future to resolve.
val stx = rpc.startFlow(::SellerFlow, otherParty, amount).returnValue.getOrThrow()
logger.info("Sale completed - we have a happy customer!\n\nFinal transaction is:\n\n${Emoji.renderIfSupported(stx.tx)}")
println("Sale completed - we have a happy customer!\n\nFinal transaction is:\n\n${Emoji.renderIfSupported(stx.tx)}")
}
}