Skip to content

Commit

Permalink
CORE-17941 Add backchain verifying property to notary info
Browse files Browse the repository at this point in the history
  • Loading branch information
nkovacsx committed Oct 23, 2023
1 parent decde62 commit 91f6a95
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,15 @@
"description": "Optional. The serial on the member's latest member info.",
"type": "integer",
"minimum": 0
},
"corda.notary.service.backchain.verifying": {
"description": "Boolean flag whether the notary service is backchain verifying or not.",
"type": "string",
"enum": ["true", "false"],
"examples": [
"true",
"false"
]
}
},
"required": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@
"examples": [
"net.corda.notary.MyNotaryService"
]
},
"corda.notary.service.backchain.verifying": {
"description": "Boolean flag whether the notary service is backchain verifying or not.",
"type": "string",
"enum": ["true", "false"],
"examples": [
"true",
"false"
]
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,9 @@ public interface NotaryInfo {
* @return The public key of the notary service, which will be a composite key of all notary virtual nodes keys.
*/
@NotNull PublicKey getPublicKey();

/**
* TODO KDocs
*/
boolean isBackchainVerifying();
}

0 comments on commit 91f6a95

Please sign in to comment.