data class StateAndRef<out T : ContractState>
A StateAndRef is simply a (state, ref) pair. For instance, a vault (which holds available assets) contains these.
StateAndRef(state: TransactionState<T>, ref: StateRef)
A StateAndRef is simply a (state, ref) pair. For instance, a vault (which holds available assets) contains these. |
val ref: StateRef |
|
val state: TransactionState<T> |
fun referenced(): ReferencedStateAndRef<T>
For adding StateAndRefs as references to a TransactionBuilder. |
fun Any.contextLogger(): <ERROR CLASS>
When called from a companion object, returns the logger for the enclosing class. |