Fix a couple of tests that fail after the broadcast phase of finality flow has returned.

Remove redundant namespace on symbol
This commit is contained in:
Matthew Nesbit
2017-07-13 11:49:31 +01:00
parent 5be63adae0
commit e919d23d1f
2 changed files with 6 additions and 15 deletions

View File

@ -37,8 +37,6 @@ class BuyerFlow(val otherParty: Party) : FlowLogic<Unit>() {
// This invokes the trading flow and out pops our finished transaction.
val tradeTX: SignedTransaction = subFlow(buyer)
// TODO: This should be moved into the flow itself.
serviceHub.recordTransactions(tradeTX)
println("Purchase complete - we are a happy customer! Final transaction is: " +
"\n\n${Emoji.renderIfSupported(tradeTX.tx)}")