Skip to content

Commit

Permalink
Dropping parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
yveshauser committed Oct 1, 2024
1 parent dfdb3d5 commit c5c87af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Peras/Conformance/Soundness.agda
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@ module _ ⦃ _ : Hashable (List Tx) ⦄
transition p (modelState s₀) (NewChain chain) ≡ Just ((cs , vs) , ms₁)
Soundness s₀ ms₁ (map (State.clock s₀ ,_) vs)
newChain-soundness s₀ (block ∷ rest) inv prf
with (slotNumber block == State.clock s₀) in checkSlot
with slotNumber block == State.clock s₀ in checkSlot
| checkBlockFromOther block in checkedOther
| (parentBlock block == tipHash rest) in checkHash
| (rest == pref (modelState s₀)) in checkRest
| parentBlock block == tipHash rest in checkHash
| rest == pref (modelState s₀) in checkRest
| checkSignedBlock block in checkedSig
| checkLeadershipProof (leadershipProof block) in checkedLead
| lastSlot rest Haskell.< slotNumber block in checkedNewer
Expand Down

0 comments on commit c5c87af

Please sign in to comment.