Colljos m7 minor config fix boc (#137)

* Fixed incorrect configuration of Issuer node.

* Fixed incorrect configuration of Bank of Corda gradle node config.
This commit is contained in:
josecoll 2017-01-11 11:01:16 +00:00 committed by GitHub
parent 172be1301d
commit 4d0fef4701

View File

@ -72,7 +72,7 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['build']) {
node {
name "BankOfCorda"
nearestCity "London"
advertisedServices = []
advertisedServices = ["corda.issuer.USD"]
artemisPort 10004
webPort 10005
cordapps = []
@ -90,6 +90,11 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['build']) {
artemisPort 10006
webPort 10007
cordapps = []
rpcUsers = [
['user' : "user1",
'password' : "test",
'permissions' : ["StartFlow.net.corda.flows.CashFlow"]]
]
}
}