mirror of
https://github.com/corda/corda.git
synced 2025-06-16 22:28:15 +00:00
Improve NodeTabView in DemoBench (#1639)
* Improve NodeTabView in DemoBench Reflect recent changes with advertised services removal. * Force selection of only one notary * Update screenshots
This commit is contained in:
committed by
GitHub
parent
f8a43a8331
commit
eb0e5ad417
@ -260,8 +260,8 @@ open class NodeStartup(val args: Array<String>) {
|
||||
}
|
||||
|
||||
private fun printPluginsAndServices(node: Node) {
|
||||
node.configuration.extraAdvertisedServiceIds.let {
|
||||
if (it.isNotEmpty()) Node.printBasicNodeInfo("Providing network services", it.joinToString())
|
||||
node.configuration.extraAdvertisedServiceIds.filter { it.startsWith("corda.notary.") || it.startsWith("corda.network_map") }.let {
|
||||
if (it.isNotEmpty()) Node.printBasicNodeInfo("Providing additional services", it.joinToString())
|
||||
}
|
||||
Node.printBasicNodeInfo("Loaded CorDapps", node.cordappProvider.cordapps.map { it.name }.joinToString())
|
||||
val plugins = node.pluginRegistries
|
||||
|
Reference in New Issue
Block a user