Address review comments.

This commit is contained in:
Mike Hearn 2016-08-05 15:38:29 +02:00
parent 25f65a60c7
commit 1f94335850

View File

@ -138,7 +138,7 @@ data class SignedTransaction(val txBits: SerializedBytes<WireTransaction>,
/**
* Returns the set of missing signatures - a signature must be present for each signer public key.
*/
fun getMissingSignatures(): Set<PublicKey> {
private fun getMissingSignatures(): Set<PublicKey> {
val requiredKeys = tx.signers.toSet()
val sigKeys = sigs.map { it.by }.toSet()