Merge remote-tracking branch 'origin/release/os/4.6' into christians/update-feat-20200502

This commit is contained in:
Christian Sailer
2020-06-02 09:03:11 +01:00
104 changed files with 5288 additions and 707 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
}