[CORDA-624] Node Explorer on Issuing cash throws MissingContractAttachements exception (#1654)

This commit is contained in:
Patrick Kuo 2017-09-26 14:21:40 +01:00 committed by GitHub
parent e1b040ba0e
commit 474a72d1d2

View File

@ -68,7 +68,7 @@ class ExplorerSimulation(val options: OptionSet) {
private fun startDemoNodes() {
val portAllocation = PortAllocation.Incremental(20000)
driver(portAllocation = portAllocation) {
driver(portAllocation = portAllocation, extraCordappPackagesToScan = listOf("net.corda.finance")) {
// TODO : Supported flow should be exposed somehow from the node instead of set of ServiceInfo.
val notary = startNode(providedName = DUMMY_NOTARY.name, advertisedServices = setOf(ServiceInfo(SimpleNotaryService.type)),
customOverrides = mapOf("nearestCity" to "Zurich"))