From b89b014d9a28c37750c1fd3ab45aae00688bea64 Mon Sep 17 00:00:00 2001 From: "S. Matthew English" Date: Thu, 19 Jan 2017 12:33:00 +0100 Subject: [PATCH] unify references to notary in output harmonize line 167 with earlier references on line 146 for example --- .../kotlin/net/corda/core/transactions/TransactionBuilder.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/kotlin/net/corda/core/transactions/TransactionBuilder.kt b/core/src/main/kotlin/net/corda/core/transactions/TransactionBuilder.kt index a3a6c5cff8..0adfb19ef1 100644 --- a/core/src/main/kotlin/net/corda/core/transactions/TransactionBuilder.kt +++ b/core/src/main/kotlin/net/corda/core/transactions/TransactionBuilder.kt @@ -164,7 +164,7 @@ open class TransactionBuilder( /** A default notary must be specified during builder construction to use this method */ fun addOutputState(state: ContractState): Int { - checkNotNull(notary) { "Need to specify a Notary for the state, or set a default one on TransactionBuilder initialisation" } + checkNotNull(notary) { "Need to specify a notary for the state, or set a default one on TransactionBuilder initialisation" } return addOutputState(state, notary!!) }