mirror of
https://github.com/corda/corda.git
synced 2025-04-16 07:27:17 +00:00
Removed isNotary part of DSL in response to it being removed from the configuration interface.
This commit is contained in:
parent
2bb8a5a7b6
commit
a927ba095d
@ -16,7 +16,6 @@ class Node {
|
||||
public String name
|
||||
private String dirName
|
||||
private String nearestCity
|
||||
private Boolean isNotary = false
|
||||
private Boolean isHttps = false
|
||||
private List<String> advertisedServices = []
|
||||
private Integer artemisPort
|
||||
@ -54,15 +53,6 @@ class Node {
|
||||
this.nearestCity = nearestCity
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets whether this node will be a notary
|
||||
*
|
||||
* @param isNotary True if this node is a notary.
|
||||
*/
|
||||
void notary(Boolean isNotary) {
|
||||
this.isNotary = isNotary
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets whether this node will use HTTPS communication.
|
||||
*
|
||||
@ -207,7 +197,6 @@ class Node {
|
||||
"name": name,
|
||||
"dirName": dirName,
|
||||
"nearestCity": nearestCity,
|
||||
"isNotary": isNotary,
|
||||
"isHttps": isHttps,
|
||||
"advertisedServices": advertisedServices,
|
||||
"networkMapAddress": networkMapAddress,
|
||||
|
@ -5,7 +5,6 @@ keyStorePassword : "cordacadevpass"
|
||||
trustStorePassword : "trustpass"
|
||||
artemisAddress : "localhost:$artemisPort"
|
||||
webAddress : "localhost:$webPort"
|
||||
hostNotaryServiceLocally: $isNotary
|
||||
extraAdvertisedServiceIds: "$advertisedServices"
|
||||
networkMapAddress : "$networkMapAddress"
|
||||
useHTTPS : $isHttps
|
||||
|
Loading…
x
Reference in New Issue
Block a user