data class StateAndRef<out T : ContractState>A StateAndRef is simply a (state, ref) pair. For instance, a wallet (which holds available assets) contains these.
| <init> |
StateAndRef(state: TransactionState<T>, ref: StateRef)A StateAndRef is simply a (state, ref) pair. For instance, a wallet (which holds available assets) contains these. |
| ref |
val ref: StateRef |
| state |
val state: TransactionState<T> |