Skip to content

Commit

Permalink
CORE-18553: Add response type from link manager to the gateway (#1424)
Browse files Browse the repository at this point in the history
* Add response type from link manager to the gateway

* Apply review comments
  • Loading branch information
yift-r3 authored Dec 22, 2023
1 parent 8310e5b commit 84f55ad
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "record",
"name": "LinkManagerResponse",
"namespace": "net.corda.data.p2p.linkmanager",
"doc": "A response from the p2p link manager when being sent a LinkInMessage via the HTTP endpoint",
"fields": [
{
"name": "payload",
"type": [
"null",
"net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage",
"net.corda.data.p2p.crypto.AuthenticatedDataMessage"
]
}
]
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cordaProductVersion = 5.2.0
# NOTE: update this each time this module contains a breaking change
## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to
## a per module property in which case module versions can change independently.
cordaApiRevision = 23
cordaApiRevision = 24

# Main
kotlin.stdlib.default.dependency = false
Expand Down

0 comments on commit 84f55ad

Please sign in to comment.