Minor: delete dead code in SignedTransaction.verifySignatures as it's not required.

This commit is contained in:
Mike Hearn 2016-09-06 13:20:01 +02:00
parent 210ea2ed95
commit 8a19e6bbfb

View File

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