You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
745 B

  1. ------------------------- MODULE MC_5_3 -------------------------------------
  2. AllNodes == {"n1", "n2", "n3", "n4", "n5"}
  3. COMMON_HEIGHT == 1
  4. CONFLICT_HEIGHT == 3
  5. TRUSTING_PERIOD == 1400 \* two weeks, one day is 100 time units :-)
  6. FAULTY_RATIO == <<1, 2>> \* < 1 / 2 faulty validators
  7. VARIABLES
  8. blockchain, \* the reference blockchain
  9. refClock, \* current time in the reference blockchain
  10. Faulty, \* the set of faulty validators
  11. state, \* the state of the light client detector
  12. conflictingBlock, \* an evidence that two peers reported conflicting blocks
  13. attackers
  14. INSTANCE Isolation_001_draft
  15. ============================================================================