Для этого вам нужно выполнить три шага:
- Получить состояние ввода, которое вы хотите использовать
- Сделать состояние вывода, которое является копией состояния ввода
- Добавьте их обоих в построитель транзакций
Вот пример выполнения этого для состояния, представляющего обязательство:
// Retrieve the state using its linear ID.
QueryCriteria queryCriteria = new QueryCriteria.LinearStateQueryCriteria(
null,
ImmutableList.of(linearId),
Vault.StateStatus.UNCONSUMED,
null);
List<StateAndRef<Obligation>> obligations = getServiceHub().getVaultService().queryBy(Obligation.class, queryCriteria).getStates();
if (obligations.size() != 1) {
throw new FlowException(String.format("Obligation with id %s not found.", linearId));
}
StateAndRef<Obligation> inputStateAndRef = obligations.get(0);
Obligation input = inputStateAndRef.getState().getData();
// Create the new output state.
Obligation output = new Obligation(input.getAmount(), input.getLender(), input.getBorrower(), input.getPaid(), input.getLinearId());
// Creating the transaction builder (don't forget to add a command!)
final TransactionBuilder builder = new TransactionBuilder(notary)
.addInputState(inputStateAndRef)
.addOutputState(output, OBLIGATION_CONTRACT_ID);