在Corda流中,我正在接收和验证一个事务,如下所示:class Responder(val counterpartySession: FlowSessionFlowLogic<Unit>() { override fun call() {
val stx = counterpartySession.receive<SignedTransaction>().unwrap { it
考虑以下Corda流对:class SendFlow(val message: String, val session: FlowSession) : FlowLogic<Boolean>(FlowLogic<String>() { @Suspendable val result = session.receiveoverride fun call(): String