mirror of
https://github.com/corda/corda.git
synced 2025-02-21 09:51:57 +00:00
node: Fix compiler error due to rebase
This commit is contained in:
parent
a5e8c86928
commit
2e6de61ad0
@ -112,7 +112,7 @@ class NodeRunner {
|
||||
fun parse(optionSet: OptionSet): CliParams {
|
||||
val services = optionSet.valuesOf(services)
|
||||
val networkMapName = optionSet.valueOf(networkMapName)
|
||||
val networkMapPublicKey = optionSet.valueOf(networkMapPublicKey)?.let { parsePublicKeyBase58(it) }
|
||||
val networkMapPublicKey = optionSet.valueOf(networkMapPublicKey)?.run { parsePublicKeyBase58(this) }
|
||||
val networkMapAddress = optionSet.valueOf(networkMapAddress)
|
||||
val messagingAddress = requiredArgument(optionSet, messagingAddress)
|
||||
val apiAddress = requiredArgument(optionSet, apiAddress)
|
||||
|
Loading…
x
Reference in New Issue
Block a user