From cae39332bf8de737783b6eefea6538b80ba47e3c Mon Sep 17 00:00:00 2001 From: "rick.parker" Date: Thu, 16 Jun 2016 13:15:37 +0100 Subject: [PATCH] Remove commented out ResolveTransactionsProtocol call as it is not required --- .../main/kotlin/com/r3corda/protocols/TwoPartyDealProtocol.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/main/kotlin/com/r3corda/protocols/TwoPartyDealProtocol.kt b/core/src/main/kotlin/com/r3corda/protocols/TwoPartyDealProtocol.kt index f2b1c24b3f..81e0a2bcaa 100644 --- a/core/src/main/kotlin/com/r3corda/protocols/TwoPartyDealProtocol.kt +++ b/core/src/main/kotlin/com/r3corda/protocols/TwoPartyDealProtocol.kt @@ -352,10 +352,6 @@ object TwoPartyDealProtocol { if (dealToFix.ref != handshake.payload) throw DealRefMismatchException(dealToFix.ref, handshake.payload) - // Check the transaction that contains the state which is being resolved. - // We only have a hash here, so if we don't know it already, we have to ask for it. - //subProtocol(ResolveTransactionsProtocol(setOf(handshake.payload.txhash), otherSide)) - return handshake } }