Made casing of h2Port more consistent with other node properties in Cordformation.

This commit is contained in:
Clinton Alexander 2017-03-31 10:36:34 +01:00
parent 73a7c62a07
commit e201569ac9
2 changed files with 5 additions and 5 deletions

View File

@ -202,7 +202,7 @@ is a three node example;
p2pPort 10002
rpcPort 10003
webPort 10004
h2port 11002
h2Port 11002
cordapps []
}
node {
@ -212,7 +212,7 @@ is a three node example;
p2pPort 10005
rpcPort 10006
webPort 10007
h2port 11005
h2Port 11005
cordapps []
}
node {
@ -222,7 +222,7 @@ is a three node example;
p2pPort 10008
rpcPort 10009
webPort 10010
h2port 11008
h2Port 11008
cordapps []
}
}

View File

@ -78,8 +78,8 @@ class Node {
/**
* Sets the H2 port for this node
*/
void h2port(Integer h2port) {
config = config.withValue("h2port", ConfigValueFactory.fromAnyRef(h2port))
void h2Port(Integer h2Port) {
config = config.withValue("h2port", ConfigValueFactory.fromAnyRef(h2Port))
}
void useTestClock(Boolean useTestClock) {