voyager transaction batch plugin improvements #4012
Labels
A-voyager
Area: voyager (relayer)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
E-hard
Call for participation: Hard difficulty. Experience needed to fix: A lot.
currently the transaction batch plugin works essentially like this:
conc(submit(...updates, ...B1), seq(waitForClientHeight(), submit(...Bn)))
this has a few issues:
an ideal design would instead at step 4 only fetch proofs for the items in the first batch (B1), and then for the rest of the messages queue them as
seq(waitForAtLeastClientHeight(), mkMsgs(...Bn))
.mkMsgs
would then query the latest client state height, and generate proofs at that height instead.The text was updated successfully, but these errors were encountered: