package octez-protocol-017-PtNairob-libs

  1. Overview
  2. Docs
Octez protocol 017-PtNairob libraries

Install

Dune Dependency

Authors

Maintainers

Sources

octez-19.1.tar.gz
sha256=55ea1fb8bb3273a7fc270ca8f650d45c56449665619482aad9bc12f3ea736b7e
sha512=fec850fc2d17d7490bbabd5147d62aad13b3aaed8774270f8a38ab419670ed03e0fd30cf8642a97984eca5c2446726fe590ad99c015f7ec50919dc7652f25053

doc/octez-protocol-017-PtNairob-libs.plugin/Tezos_protocol_plugin_017_PtNairob/Mempool/Conflict_map/index.html

Module Mempool.Conflict_mapSource

The purpose of this module is to provide the fee_needed_to_replace_by_fee function. For this function to be correct, the caller must maintain the state of type t by calling update on each successfully validated operation and its induced replacements.

Sourcetype t

Internal state needed by fee_needed_to_replace_by_fee.

Sourceval empty : t

Initial state.

Sourceval update : t -> new_operation: Tezos_protocol_017_PtNairob.Protocol.Alpha_context.packed_operation -> replacements: Tezos_protocol_017_PtNairob.Protocol.Alpha_context.packed_operation list -> t

Removes all the replacements from the state then adds new_operation.

Sourceval fee_needed_to_replace_by_fee : config -> candidate_op: Tezos_protocol_017_PtNairob.Protocol.Alpha_context.packed_operation -> conflict_map:t -> int64 option

This function should be called when Protocol.Mempool.add_operation has returned Unchanged. This means that the candidate_op has been rejected because there was a conflict with an pre-existing operation and the conflict_handler has returned `Keep. When both operations are manager operations, this function returns the minimal fee (in mutez) that candidate_op would need in order to win the conflict, i.e. make the conflict_handler return `Replace instead. Otherwise, it returns None.

OCaml

Innovation. Community. Security.