From aa166518a0575ccaf4bd058a106ec327b17a5ef5 Mon Sep 17 00:00:00 2001 From: Andrius Dagys Date: Mon, 5 Sep 2016 18:41:35 +0100 Subject: [PATCH] Remove unused val --- core/src/main/kotlin/com/r3corda/core/contracts/Transactions.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/main/kotlin/com/r3corda/core/contracts/Transactions.kt b/core/src/main/kotlin/com/r3corda/core/contracts/Transactions.kt index da836c8476..03397d7542 100644 --- a/core/src/main/kotlin/com/r3corda/core/contracts/Transactions.kt +++ b/core/src/main/kotlin/com/r3corda/core/contracts/Transactions.kt @@ -163,7 +163,6 @@ data class SignedTransaction(val txBits: SerializedBytes, * Returns the set of missing signatures - a signature must be present for each signer public key. */ private fun getMissingSignatures(): Set { - val notaryKey = tx.notary?.owningKey val requiredKeys = tx.signers.toSet() val sigKeys = sigs.map { it.by }.toSet()