corda / net.corda.finance.flows / AbstractCashFlow / Result

Result

data class Result

Combined signed transaction and identity lookup map, which is the resulting data from regular cash flows. Specialised flows for unit tests differ from this.

Parameters

stx - the signed transaction.

recipient - the identity used for the other side of the transaction, where applicable (i.e. this is null for exit transactions). For anonymous transactions this is the confidential identity generated for the transaction, otherwise this is the well known identity.

Constructors

<init>

Combined signed transaction and identity lookup map, which is the resulting data from regular cash flows. Specialised flows for unit tests differ from this.

Result(stx: SignedTransaction, recipient: AbstractParty?)

Properties

recipient

the identity used for the other side of the transaction, where applicable (i.e. this is null for exit transactions). For anonymous transactions this is the confidential identity generated for the transaction, otherwise this is the well known identity.

val recipient: AbstractParty?

stx

the signed transaction.

val stx: SignedTransaction