CORDA-770: Sync-up setting in "build.gradle" (#2012)

* CORDA-770: Sync-up setting in "build.gradle"

* Innocent change to the Api which should make the API check pass
This commit is contained in:
Viktor Kolomeyko 2017-11-07 18:01:53 +00:00 committed by GitHub
parent ad9d594fd3
commit f99cae3205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1176,8 +1176,8 @@ public final class net.corda.core.flows.ReceiveStateAndRefFlow extends net.corda
@co.paralleluniverse.fibers.Suspendable @org.jetbrains.annotations.NotNull public List call()
##
public final class net.corda.core.flows.ReceiveTransactionFlow extends net.corda.core.flows.FlowLogic
public <init>(net.corda.core.flows.FlowSession)
public <init>(net.corda.core.flows.FlowSession, boolean)
@kotlin.jvm.JvmOverloads public <init>(net.corda.core.flows.FlowSession)
@kotlin.jvm.JvmOverloads public <init>(net.corda.core.flows.FlowSession, boolean)
@co.paralleluniverse.fibers.Suspendable @org.jetbrains.annotations.NotNull public net.corda.core.transactions.SignedTransaction call()
##
public @interface net.corda.core.flows.SchedulableFlow

View File

@ -53,7 +53,7 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
networkMap "O=Notary Service,L=Zurich,C=CH"
node {
name "O=Notary Service,L=Zurich,C=CH"
advertisedServices = ["corda.notary.validating"]
advertisedServices = ["corda.notary.simple"]
p2pPort 10002
rpcPort 10003
cordapps = ["net.corda:finance:$corda_release_version"]