From ad6c59d742310fbd078ebc437c941824fd05900e Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Tue, 6 Sep 2016 12:10:04 +0200 Subject: [PATCH] Minor: note in the DummyState doc that it's not a part of DummyContract despite the name. --- core/src/main/kotlin/com/r3corda/core/contracts/DummyState.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/kotlin/com/r3corda/core/contracts/DummyState.kt b/core/src/main/kotlin/com/r3corda/core/contracts/DummyState.kt index 1f6fb6df2c..2c8c66f9c5 100644 --- a/core/src/main/kotlin/com/r3corda/core/contracts/DummyState.kt +++ b/core/src/main/kotlin/com/r3corda/core/contracts/DummyState.kt @@ -3,7 +3,7 @@ package com.r3corda.core.contracts import java.security.PublicKey /** - * Dummy state for use in testing. Not part of any real contract. + * Dummy state for use in testing. Not part of any contract, not even the [DummyContract]. */ data class DummyState(val magicNumber: Int = 0) : ContractState { override val contract = DUMMY_PROGRAM_ID