Skip to content

Commit

Permalink
#414 account for Igor's naming suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-kuprianov committed Sep 24, 2020
1 parent 1f02ef0 commit 6ab98d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/spec/lightclient/verification/Lightclient_A_1.tla
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@ VARIABLES
(* the variables of the lite client *)
lcvars == <<state, nextHeight, fetchedLightBlocks, lightBlockStatus, latestVerified>>

(* the variables used by the light client in the previous state *)
(* the light client previous state components, used for monitoring *)
VARIABLES
prevVerified,
prevCurrent,
prevNow,
prevVerdict

InitHistory(verified, current, now, verdict) ==
InitMonitor(verified, current, now, verdict) ==
/\ prevVerified = verified
/\ prevCurrent = current
/\ prevNow = now
/\ prevVerdict = verdict

NextHistory(verified, current, now, verdict) ==
NextMonitor(verified, current, now, verdict) ==
/\ prevVerified' = verified
/\ prevCurrent' = current
/\ prevNow' = now
Expand Down

0 comments on commit 6ab98d3

Please sign in to comment.