sov-state 0.3.0

Defines traits and types for state storage in the Sovereign SDK module system
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Configuration options for [`Storage`](crate::storage::Storage) types.

use std::path::PathBuf;

/// Configuration options for [`ProverStorage`](crate::ProverStorage)
/// initialization.
#[derive(serde::Deserialize, Debug, Clone, PartialEq, Eq)]
pub struct Config {
    /// Path to folder where storage files will be stored.
    pub path: PathBuf,
}