Module Tezos_raw_protocol_alpha.Sc_rollup_errors

type Tezos_protocol_environment_alpha.Error_monad.error +=
  1. | Sc_rollup_disputed
  2. | Sc_rollup_no_valid_commitment_to_cement
  3. | Sc_rollup_does_not_exist of Sc_rollup_repr.t
  4. | Sc_rollup_no_conflict
  5. | Sc_rollup_no_stakers
  6. | Sc_rollup_not_staked
  7. | Sc_rollup_not_staked_on_lcc_or_ancestor
  8. | Sc_rollup_parent_not_lcc
  9. | Sc_rollup_remove_lcc_or_ancestor
  10. | Sc_rollup_staker_double_stake
  11. | Sc_rollup_too_far_ahead
  12. | Sc_rollup_commitment_from_future of {
    1. current_level : Raw_level_repr.t;
    2. inbox_level : Raw_level_repr.t;
    }
  13. | Sc_rollup_commitment_too_recent of {
    1. current_level : Raw_level_repr.t;
    2. min_level : Raw_level_repr.t;
    }
  14. | Sc_rollup_unknown_commitment of Sc_rollup_commitment_repr.Hash.t
  15. | Sc_rollup_bad_inbox_level
  16. | Sc_rollup_game_already_started
  17. | Sc_rollup_max_number_of_parallel_games_reached of Tezos_protocol_environment_alpha.Signature.Public_key_hash.t
  18. | Sc_rollup_wrong_turn
  19. | Sc_rollup_no_game
  20. | Sc_rollup_staker_in_game of [ `Both of Tezos_protocol_environment_alpha.Signature.public_key_hash * Tezos_protocol_environment_alpha.Signature.public_key_hash | `Defender of Tezos_protocol_environment_alpha.Signature.public_key_hash | `Refuter of Tezos_protocol_environment_alpha.Signature.public_key_hash ]
  21. | Sc_rollup_timeout_level_not_reached of int32 * Tezos_protocol_environment_alpha.Signature.public_key_hash
  22. | Sc_rollup_max_number_of_messages_reached_for_commitment_period
  23. | Sc_rollup_add_zero_messages
  24. | Sc_rollup_invalid_outbox_message_index
  25. | Sc_rollup_outbox_level_expired
  26. | Sc_rollup_outbox_message_already_applied
  27. | Sc_rollup_staker_funds_too_low of {
    1. staker : Tezos_protocol_environment_alpha.Signature.public_key_hash;
    2. sc_rollup : Sc_rollup_repr.t;
    3. staker_balance : Tez_repr.t;
    4. min_expected_balance : Tez_repr.t;
    }
  28. | Sc_rollup_bad_commitment_serialization
  29. | Sc_rollup_address_generation
  30. | Sc_rollup_zero_tick_commitment
  31. | Sc_rollup_commitment_past_curfew
  32. | Sc_rollup_not_valid_commitments_conflict of Sc_rollup_commitment_repr.Hash.t * Tezos_protocol_environment_alpha.Signature.public_key_hash * Sc_rollup_commitment_repr.Hash.t * Tezos_protocol_environment_alpha.Signature.public_key_hash
  33. | Sc_rollup_wrong_staker_for_conflict_commitment of Tezos_protocol_environment_alpha.Signature.public_key_hash * Sc_rollup_commitment_repr.Hash.t
  34. | Sc_rollup_commitment_too_old of {
    1. last_cemented_inbox_level : Raw_level_repr.t;
    2. commitment_inbox_level : Raw_level_repr.t;
    }
  35. | Sc_rollup_no_commitment_to_cement of Raw_level_repr.t
  36. | Sc_rollup_double_publish of Sc_rollup_commitment_repr.Hash.t
  37. | Sc_rollup_empty_whitelist
  38. | Sc_rollup_whitelist_disabled
  39. | Sc_rollup_staker_not_in_whitelist
  40. | Sc_rollup_duplicated_key_in_whitelist
  41. | Sc_rollup_is_public