mirror of
https://github.com/corda/corda.git
synced 2025-01-18 10:46:38 +00:00
Made casing of h2Port more consistent with other node properties in Cordformation.
This commit is contained in:
parent
73a7c62a07
commit
e201569ac9
@ -202,7 +202,7 @@ is a three node example;
|
|||||||
p2pPort 10002
|
p2pPort 10002
|
||||||
rpcPort 10003
|
rpcPort 10003
|
||||||
webPort 10004
|
webPort 10004
|
||||||
h2port 11002
|
h2Port 11002
|
||||||
cordapps []
|
cordapps []
|
||||||
}
|
}
|
||||||
node {
|
node {
|
||||||
@ -212,7 +212,7 @@ is a three node example;
|
|||||||
p2pPort 10005
|
p2pPort 10005
|
||||||
rpcPort 10006
|
rpcPort 10006
|
||||||
webPort 10007
|
webPort 10007
|
||||||
h2port 11005
|
h2Port 11005
|
||||||
cordapps []
|
cordapps []
|
||||||
}
|
}
|
||||||
node {
|
node {
|
||||||
@ -222,7 +222,7 @@ is a three node example;
|
|||||||
p2pPort 10008
|
p2pPort 10008
|
||||||
rpcPort 10009
|
rpcPort 10009
|
||||||
webPort 10010
|
webPort 10010
|
||||||
h2port 11008
|
h2Port 11008
|
||||||
cordapps []
|
cordapps []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -78,8 +78,8 @@ class Node {
|
|||||||
/**
|
/**
|
||||||
* Sets the H2 port for this node
|
* Sets the H2 port for this node
|
||||||
*/
|
*/
|
||||||
void h2port(Integer h2port) {
|
void h2Port(Integer h2Port) {
|
||||||
config = config.withValue("h2port", ConfigValueFactory.fromAnyRef(h2port))
|
config = config.withValue("h2port", ConfigValueFactory.fromAnyRef(h2Port))
|
||||||
}
|
}
|
||||||
|
|
||||||
void useTestClock(Boolean useTestClock) {
|
void useTestClock(Boolean useTestClock) {
|
||||||
|
Loading…
Reference in New Issue
Block a user