Find transaction based on submission datapoints?

@Stephen blah :frowning: Okay. so given your description

If a submission is made and based on the description here:

I would do something like:

  1. Get current ledger Offset end (could be cached every N period)
  2. SubmitAndWait
  3. After 5 seconds if no response from the ledger then return to the client the commandId and ledger offset at time of submission.
  4. Client can query for status of command using the commandId + offset and on the java side you run the submission completion client for the submitting party + offset. Then inspect each response in the stream for the command ID.

That sound correct?