Merge pull request #582 from corda/shams-flow-counterpartymarker-cleanup

Deprecated FlowLogic.getCounterpartyMarker as it's complicated and probably not used
This commit is contained in:
Shams Asari
2017-04-26 09:40:48 +01:00
committed by GitHub
31 changed files with 123 additions and 145 deletions

View File

@ -31,7 +31,7 @@ class BuyerFlow(val otherParty: Party,
it.automaticallyExtractAttachments = true
it.storePath
}
services.registerFlowInitiator(SellerFlow::class.java) { BuyerFlow(it, attachmentsPath.toString()) }
services.registerServiceFlow(SellerFlow::class.java) { BuyerFlow(it, attachmentsPath.toString()) }
}
}