tari_core 5.3.0-pre.9

Core Tari protocol components
Documentation
// Copyright 2020. The Tari Project
//
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
// following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
// disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
// following disclaimer in the documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
// products derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

use serde::{Deserialize, Serialize};
use tari_common::SubConfigPath;

use crate::mempool::{reorg_pool::ReorgPoolConfig, unconfirmed_pool::UnconfirmedPoolConfig};

/// Configuration for the Mempool.
#[derive(Clone, Deserialize, Serialize, Default, Debug)]
#[serde(deny_unknown_fields)]
pub struct MempoolConfig {
    override_from: Option<String>,
    pub unconfirmed_pool: UnconfirmedPoolConfig,
    pub reorg_pool: ReorgPoolConfig,
    pub service: MempoolServiceConfig,
}

impl SubConfigPath for MempoolConfig {
    fn main_key_prefix() -> &'static str {
        "mempool"
    }
}

/// Configuration for the MempoolService.
#[derive(Clone, Deserialize, Serialize, Debug)]
#[serde(deny_unknown_fields)]
pub struct MempoolServiceConfig {
    /// Number of peers from which to initiate a sync. Once this many peers have successfully synced, this node will
    /// not initiate any more mempool syncs. Default: 2
    pub initial_sync_num_peers: usize,
    /// The maximum number of transactions to sync in a single sync session Default: 10_000
    pub initial_sync_max_transactions: usize,
    /// The maximum number of blocks added via sync or re-org to triggering a sync
    pub block_sync_trigger: usize,
}

impl Default for MempoolServiceConfig {
    fn default() -> Self {
        Self {
            initial_sync_num_peers: 2,
            initial_sync_max_transactions: 10_000,
            block_sync_trigger: 5,
        }
    }
}

#[cfg(test)]
mod test {
    use config::Config;
    use tari_common::DefaultConfigLoader;

    use super::MempoolConfig;
    use crate::mempool::reorg_pool::ReorgPoolConfig;

    #[test]
    pub fn test_mempool_config() {
        let config = Config::builder()
            .set_override("mempool.unconfirmed_pool.storage_capacity", 3)
            .unwrap()
            .build()
            .unwrap();

        let my_config = MempoolConfig::load_from(&config).expect("Could not load configuration");
        // [ ] mempool.mainnet, [X]  mempool = 3, [X] Default
        assert_eq!(my_config.unconfirmed_pool.storage_capacity, 3);
        // [ ] mempool.mainnet, [ ]  mempool, [X] Default = 512
        // [ ] mempool.mainnet, [ ]  mempool, [X] Default = 10s
        assert_eq!(
            my_config.reorg_pool.expiry_height,
            ReorgPoolConfig::default().expiry_height
        );

        let config = Config::builder()
            .add_source(config)
            .set_override("mainnet.mempool.unconfirmed_pool.storage_capacity", 20)
            .unwrap()
            .set_override("mempool.override_from", "mainnet")
            .unwrap()
            .build()
            .unwrap();

        // use_network = mainnet
        let my_config = MempoolConfig::load_from(&config).expect("Could not load configuration");
        // [ ] mempool.mainnet, [X]  mempool = 3, [X] Default
        assert_eq!(my_config.unconfirmed_pool.storage_capacity, 20);
        // [ ] mempool.mainnet, [ ]  mempool, [X] Default = 10s
        assert_eq!(
            my_config.reorg_pool.expiry_height,
            ReorgPoolConfig::default().expiry_height
        );
    }
}