package tezos-protocol-014-PtKathma
Tezos/Protocol: economic-protocol definition
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-16.1.tar.gz
sha256=43723d096307603703a1a89ed1b2eb202b365f5e7824b96b0cbf813b343a6cf7
sha512=b2a637f2e965000d3d49ad85277ca24d6cb07a1a7cf2bc69d296d8b03ad78c3eaa8e21e94b9162e62c2e11649cd03bc845b2a3dafe623b91065df69d47dc8e4f
doc/src/tezos-protocol-014-PtKathma.raw/dal_errors_repr.ml.html
Source file dal_errors_repr.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2022 Trili Tech <contact@trili.tech> *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) (* to deal in the Software without restriction, including without limitation *) (* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) (* and/or sell copies of the Software, and to permit persons to whom the *) (* Software is furnished to do so, subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be included *) (* in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) (* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) (* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) (* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) (* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) (* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) type error += | Dal_feature_disabled | Dal_slot_index_above_hard_limit | Dal_subscribe_rollup_invalid_slot_index of { given : Dal_slot_repr.Index.t; maximum : Dal_slot_repr.Index.t; } | Dal_endorsement_unexpected_size of {expected : int; got : int} | Dal_publish_slot_header_invalid_index of { given : Dal_slot_repr.Index.t; maximum : Dal_slot_repr.Index.t; } | Dal_publish_slot_header_candidate_with_low_fees of { proposed_fees : Tez_repr.t; } | Dal_endorsement_size_limit_exceeded of {maximum_size : int; got : int} | Dal_publish_slot_header_duplicate of {slot : Dal_slot_repr.t} let () = let open Data_encoding in let description = "Bad index for slot" in register_error_kind `Permanent ~id:"dal_subscribe_rollup_invalid_slot_index" ~title:"DAL slot invalid index for subscribing sc rollup" ~description ~pp:(fun ppf (given, maximum) -> Format.fprintf ppf "%s: Given %a. Maximum %a." description Dal_slot_repr.Index.pp given Dal_slot_repr.Index.pp maximum) (obj2 (req "given" Dal_slot_repr.Index.encoding) (req "got" Dal_slot_repr.Index.encoding)) (function | Dal_subscribe_rollup_invalid_slot_index {given; maximum} -> Some (given, maximum) | _ -> None) (fun (given, maximum) -> Dal_subscribe_rollup_invalid_slot_index {given; maximum}) ; let description = "Data-availability layer will be enabled in a future proposal." in register_error_kind `Permanent ~id:"operation.dal_disabled" ~title:"DAL is disabled" ~description ~pp:(fun ppf () -> Format.fprintf ppf "%s" description) Data_encoding.unit (function Dal_feature_disabled -> Some () | _ -> None) (fun () -> Dal_feature_disabled) ; let description = "The endorsement for data availability has a different size" in register_error_kind `Permanent ~id:"dal_endorsement_unexpected_size" ~title:"DAL endorsement unexpected size" ~description ~pp:(fun ppf (expected, got) -> Format.fprintf ppf "%s: Expected %d. Got %d." description expected got) (obj2 (req "expected_size" int31) (req "got" int31)) (function | Dal_endorsement_unexpected_size {expected; got} -> Some (expected, got) | _ -> None) (fun (expected, got) -> Dal_endorsement_unexpected_size {expected; got}) ; let description = "Slot index above hard limit" in register_error_kind `Permanent ~id:"dal_slot_index_negative_orabove_hard_limit" ~title:"DAL slot index negative or above hard limit" ~description ~pp:(fun ppf () -> Format.fprintf ppf "%s: Maximum allowed %a." description Dal_slot_repr.Index.pp Dal_slot_repr.Index.max_value) Data_encoding.unit (function Dal_slot_index_above_hard_limit -> Some () | _ -> None) (fun () -> Dal_slot_index_above_hard_limit) ; let description = "Bad index for slot header" in register_error_kind `Permanent ~id:"dal_publish_slot_header_invalid_index" ~title:"DAL slot header invalid index" ~description ~pp:(fun ppf (given, maximum) -> Format.fprintf ppf "%s: Given %a. Maximum %a." description Dal_slot_repr.Index.pp given Dal_slot_repr.Index.pp maximum) (obj2 (req "given" Dal_slot_repr.Index.encoding) (req "got" Dal_slot_repr.Index.encoding)) (function | Dal_publish_slot_header_invalid_index {given; maximum} -> Some (given, maximum) | _ -> None) (fun (given, maximum) -> Dal_publish_slot_header_invalid_index {given; maximum}) ; (* DAL/FIXME https://gitlab.com/tezos/tezos/-/issues/3114 Better error message *) let description = "Slot header with too low fees" in register_error_kind `Permanent ~id:"dal_publish_slot_header_with_low_fees" ~title:"DAL slot header with low fees" ~description ~pp:(fun ppf proposed -> Format.fprintf ppf "%s: Proposed fees %a." description Tez_repr.pp proposed) (obj1 (req "proposed" Tez_repr.encoding)) (function | Dal_publish_slot_header_candidate_with_low_fees {proposed_fees} -> Some proposed_fees | _ -> None) (fun proposed_fees -> Dal_publish_slot_header_candidate_with_low_fees {proposed_fees}) ; let description = "The endorsement for data availability is a too big" in register_error_kind `Permanent ~id:"dal_endorsement_size_limit_exceeded" ~title:"DAL endorsement exceeded the limit" ~description ~pp:(fun ppf (maximum_size, got) -> Format.fprintf ppf "%s: Maximum is %d. Got %d." description maximum_size got) (obj2 (req "maximum_size" int31) (req "got" int31)) (function | Dal_endorsement_size_limit_exceeded {maximum_size; got} -> Some (maximum_size, got) | _ -> None) (fun (maximum_size, got) -> Dal_endorsement_size_limit_exceeded {maximum_size; got}) ; (* DAL/FIXME https://gitlab.com/tezos/tezos/-/issues/3114 Better error message. *) let description = "A slot header for this slot was already proposed" in register_error_kind `Permanent ~id:"dal_publish_slot_heade_duplicate" ~title:"DAL publish slot header duplicate" ~description ~pp:(fun ppf _proposed -> Format.fprintf ppf "%s" description) (obj1 (req "proposed" Dal_slot_repr.encoding)) (function | Dal_publish_slot_header_duplicate {slot} -> Some slot | _ -> None) (fun slot -> Dal_publish_slot_header_duplicate {slot})
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>