// Copyright 2019-2026 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0, MIT
//! Event types published by the pending pool.
usecrate::message::SignedMessage;pub(incrate::message_pool)constMPOOL_UPDATE_CHANNEL_CAPACITY:usize=256;/// A change to the pending pool.
#[derive(Clone, Debug)]pubenumMpoolUpdate{
Add(SignedMessage),#[allow(dead_code)]
Remove(SignedMessage),}