CORDA-3818: Synchronize OS implementation of PublicKeyToOwningIdentityCache with CE

This commit is contained in:
Denis Rekalov
2020-05-26 16:10:14 +01:00
parent 330a95cb68
commit 5afdb63c94
5 changed files with 19 additions and 59 deletions

View File

@ -11,7 +11,7 @@ interface PublicKeyToOwningIdentityCache {
/**
* Obtain the owning identity for a public key.
*
* If the key is unknown to the node, then this will return null.
* If the key is unknown to the node, then this will return [KeyOwningIdentity.UnmappedIdentity].
*/
operator fun get(key: PublicKey): KeyOwningIdentity?
operator fun get(key: PublicKey): KeyOwningIdentity
}