unify references to notary in output

harmonize line 167 with earlier references on line 146 for example
This commit is contained in:
S. Matthew English 2017-01-19 12:33:00 +01:00 committed by GitHub
parent 76f45a87de
commit b89b014d9a

View File

@ -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!!)
}