Fix failing slow test. (#7387)

This commit is contained in:
Jose Coll 2023-06-07 09:30:24 +01:00 committed by GitHub
parent 2cdd931fcf
commit c56ee1cc73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@ class GetFlowTransaction(private val txId: SecureHash) : FlowLogic<Pair<String,
.use { ps ->
ps.executeQuery().use { rs ->
rs.next()
rs.getLong(2) // receiverPartyId
rs.getLong(4) // receiverPartyId
}
}
return Pair(transactionStatus, receiverPartyId)