Skip to content

Commit

Permalink
mock fix
Browse files Browse the repository at this point in the history
  • Loading branch information
josef-widder committed Nov 21, 2024
1 parent a018195 commit 00c811e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specs/quint/specs/blocksync/bsyncMock.qnt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module bsyncMock {

/// Update server v from the consensus' blockchain
/// This abstracts as pull-based mechanism: the server consults the chain state.
action mockUpdateServer(v) = all {
action syncUpdateServer(v) = all {
all {
updateServer(v, chains.get(v)),
unchangedClient,
Expand Down Expand Up @@ -87,8 +87,8 @@ module bsyncMock {
any {
pureSyncStep(v, unchangedMock),
// consensus-specific steps
syncStepClient(v, writeAction), // is checking if there are responses and check whether it need to requ
mockUpdateServer(v),
syncStepClient(v, writeAction, false), // is checking if there are responses and check whether it need to requ
syncUpdateServer(v),
newHeightActionAll(v, validators, chains.get(v).length()),
decideMock(v),
}
Expand Down

0 comments on commit 00c811e

Please sign in to comment.