Cordformation now allows addresses to be used for non-database addresses. (#1917)

Cordformation now allows addresses to be used for non-database addresses.
This commit is contained in:
Clinton
2017-10-31 20:48:57 +00:00
committed by GitHub
parent f614557ae3
commit dcaac91691
4 changed files with 47 additions and 18 deletions

View File

@ -41,11 +41,12 @@ notary node:
cordapps = []
rpcUsers = [[ user: "user1", "password": "test", "permissions": []]]
}
// Example of explicit addresses being used.
node {
name "CN=NodeC,O=NodeC,L=Paris,C=FR"
p2pPort 10011
rpcPort 10012
webPort 10013
p2pAddress "localhost:10011"
rpcAddress "localhost:10012"
webAddress "localhost:10013"
cordapps = []
rpcUsers = [[ user: "user1", "password": "test", "permissions": []]]
}