Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 92bc12f

Browse files
committedJul 15, 2024·
Update offchain flow for ackSn
1 parent be21a04 commit 92bc12f

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed
 

‎spec/fig_offchain_prot.tex

+3-9
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,7 @@
227227
% TODO: DRY message creation
228228
$\eta \gets \combine(\hatmU)$ \;
229229

230-
\red{
231-
\eIf{$\psi \not= \bot ~ \land ~ \psi \in \tx_\omega$}{
232-
$\eta_\omega \gets \tx_\omega$ \;
233-
}{
234-
$\eta_\omega \gets U_\omega$ \;
235-
}
236-
}
230+
\red{$\eta_\omega \gets \psi$} \;
237231

238232
\Req{} $\msVfy(\hydraKeysAgg, (\cid || \red{\hatv ||} \hats || \eta \red{|| \eta_\omega}), \msCSig)$ \;
239233
% create confirmed snapshot for later reference
@@ -244,11 +238,11 @@
244238

245239
\red{
246240
\If{$\psi \not= \bot ~ \land ~ \psi \in \tx_\omega$}{
247-
$\PostTx{}~(\mtxDecrement, \hatv, \hats, \eta, \eta_\omega)$ \;
241+
$\PostTx{}~(\mathtt{decrementTx}, \hatv, \hats, \eta, \eta_\omega)$ \;
248242
$\Out (\hpConf,\psi)$ \;
249243
}
250244
\If{$\psi \not= \bot ~ \land ~ \psi \in U_\omega$}{
251-
$\PostTx{}~(\mtxIncrement, \hatv, \hats, \eta, \eta_\omega)$ \;
245+
$\PostTx{}~(\mathtt{incrementTx}, \hatv, \hats, \eta, \eta_\omega)$ \;
252246
$\Out (\hpConf,\psi)$ \;
253247
}
254248
}

‎spec/offchain.tex

+17-10
Original file line numberDiff line numberDiff line change
@@ -263,22 +263,29 @@ \subsubsection{Processing transactions off-chain}
263263
requested snapshot's UTxO set iteratively and
264264
ultimately yielding a ``pruned'' version of $\hatmT$ and $\hatmL$. \\
265265

266-
\dparagraph{$\hpAS$.}\quad Upon receiving acknowledgment $(\hpAS,s,\msSig_j)$, all
266+
\dparagraph{$\hpAS$.}\quad Upon receiving acknowledgment $(\hpAS,s,\msSig_j,\red{\psi})$, all
267267
participants $\Req$ that it is from an expected snapshot (either the last seen
268268
$\hats$ or + 1), potentially $\KwWait$ for the corresponding $\hpRS$ such that
269269
$\hats = s$ and $\Req$ that the signature is not yet included in $\hatSigma$.
270270
They store the received signature in the signature accumulator $\hatSigma$, and
271271
if the signature from each party has been collected, $\party_i$ aggregates the
272272
multisignature $\msCSig$ and $\Req$ it to be valid \red{(using the same message
273-
as in $\hpRS$)}. If everything is fine, the snapshot can be considered
274-
confirmed by creating the snapshot object
275-
$\bar{\mc S} \gets \Sno(\hatv, \hats, \hatmU, \hatmT \red{, \tx_\omega})$ and storing
276-
the multi-signature $\msCSig$ in it for later reference. \red{In case there is a pending
277-
decommit, any participant can now submit a \mtxDecrement{} transaction by
278-
providing the just confirmed snapshot with its digests of the active UTxO set
279-
$\eta$ and the to be removed UTxO set $\eta_\omega$.} Similar to the $\hpRT$, if
280-
$\party_i$ is the next snapshot leader and there are already transactions to
281-
snapshot in $\hatmT$, a corresponding $\hpRS$ is distributed.
273+
as in $\hpRS$)}. If everything is fine, the snapshot can be considered confirmed by creating
274+
the snapshot object $\bar{\mc S} \gets \Sno(\hatv, \hats, \hatmU, \hatmT \red{, \eta_\omega})$
275+
and storing the multi-signature $\msCSig$ in it for later reference. \red{Then, in case:
276+
\begin{itemize}
277+
\item
278+
there is a pending decrement any participant can now submit a $\mathtt{decrementTx}$
279+
by providing the confirmed snapshot with its digests of the active UTxO set
280+
$\eta$ and the UTxO set to be removed $\eta_\omega$.
281+
\item
282+
there is a pending increment any participant can now submit an $\mathtt{incrementTx}$
283+
by providing the confirmed snapshot with its digests of the active UTxO set
284+
$\eta$ and the UTxO set to be added $\eta_\omega$.
285+
\end{itemize}
286+
}
287+
Similar to the $\hpRT$, if $\party_i$ is the next snapshot leader and there are
288+
already transactions to snapshot in $\hatmT$, a corresponding $\hpRS$ is distributed.
282289

283290
\subsubsection{Closing the head}
284291

0 commit comments

Comments
 (0)
Please sign in to comment.