Module Network_pool.Indexed_pool

The data structure underlying the transaction pool. We want to efficently support all the operations necessary. We also need to make sure that an attacker can't craft transactions or sequences thereof that take up an unacceptable amount of resources leading to a DoS.

module Command_error : sig ... end
val replace_fee : Currency.Fee.t
module Config : sig ... end
module Sender_local_state : sig ... end
type t

Transaction pool. This is a purely functional data structure.

val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val config : t -> Config.t
val get_sender_local_state : t -> Mina_base.Account_id.t -> Sender_local_state.t
val set_sender_local_state : t -> Sender_local_state.t -> t
module Update : sig ... end
val empty : constraint_constants:Genesis_constants.Constraint_constants.t -> consensus_constants:Consensus.Constants.t -> time_controller:Block_time.Controller.t -> t

Empty pool

val size : t -> int

How many transactions are currently in the pool

val min_fee : t -> Currency.Fee_rate.t option

Remove the command from the pool with the lowest fee per wu, along with any others from the same account with higher nonces.

Remove all the user commands that are expired. (Valid-until < Current-global-slot)

Get the applicable command in the pool with the highest fee per wu

Add a command to the pool. Pass the current nonce for the account and its current balance. Throws if the contents of the pool before adding the new command are invalid given the supplied current nonce and balance - you are required to keep the pool in sync with the ledger you are applying transactions against.

Returns the commands dropped as a result of adding the command, which will be empty unless we're replacing one.

Add a command to the pool that was removed from the best tip because we're switching chains. Must be called in reverse order i.e. newest-to-oldest.

Check whether a command is in the pool

val has_commands_for_fee_payer : t -> Mina_base.Account_id.t -> bool

Check whether the pool has any commands for a given fee payer

Get all the user commands sent by a user with a particular account

Get all user commands in the pool.

Check the contents of the pool are valid against the current ledger. Call this whenever the transition frontier is (re)created.

val global_slot_since_genesis : t -> Mina_numbers.Global_slot.t

Get the global slot since genesis according to the pool's time controller.

module For_tests : sig ... end