package octez-smart-rollup-node-lib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Octez_smart_rollup_node.Pvm_patchesSource

Sourcetype unsafe_patch =
  1. | Increase_max_nb_ticks of int64
    (*

    Increase the maximum number of ticks.

    *)

The type of individual unsafe patch content.

Sourcetype kind =
  1. | Hardcoded
    (*

    Hardcoded by the rollup node

    *)
  2. | User_provided
    (*

    Provided by the user in the configuration file

    *)

Where the patch comes from

Sourcetype t = private (unsafe_patch * kind) list

The type of registered patches for the PVM.

Sourceval unsafe_patch_encoding : unsafe_patch Tezos_base.TzPervasives.Data_encoding.t

Encoding for unsafe patches.

Sourceval pp_unsafe_patch : Format.formatter -> unsafe_patch -> unit

Pretty printer for unsafe patches.

make kind address patches builds the patches from the user provided list patches and adds the hardcoded PVM patches for the rollup address.