Struct lightning_persister::FilesystemPersister[][src]

pub struct FilesystemPersister { /* fields omitted */ }

FilesystemPersister persists channel data on disk, where each channel’s data is stored in a file named after its funding outpoint.

Warning: this module does the best it can with calls to persist data, but it can only guarantee that the data is passed to the drive. It is up to the drive manufacturers to do the actual persistence properly, which they often don’t (especially on consumer-grade hardware). Therefore, it is up to the user to validate their entire storage stack, to ensure the writes are persistent. Corollary: especially when dealing with larger amounts of money, it is best practice to have multiple channel data backups and not rely only on one FilesystemPersister.

Implementations

impl FilesystemPersister[src]

pub fn new(path_to_channel_data: String) -> Self[src]

Initialize a new FilesystemPersister and set the path to the individual channels’ files.

pub fn get_data_dir(&self) -> String[src]

Get the directory which was provided when this persister was initialized.

pub fn persist_manager<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>(
    data_dir: String,
    manager: &ChannelManager<Signer, M, T, K, F, L>
) -> Result<(), Error> where
    M::Target: Watch<Signer>,
    T::Target: BroadcasterInterface,
    K::Target: KeysInterface<Signer = Signer>,
    F::Target: FeeEstimator,
    L::Target: Logger
[src]

Writes the provided ChannelManager to the path provided at FilesystemPersister initialization, within a file called “manager”.

pub fn read_channelmonitors<Signer: Sign, K: Deref>(
    &self,
    keys_manager: K
) -> Result<Vec<(BlockHash, ChannelMonitor<Signer>)>, Error> where
    K::Target: KeysInterface<Signer = Signer> + Sized
[src]

Read ChannelMonitors from disk.

Trait Implementations

impl<ChannelSigner: Sign> Persist<ChannelSigner> for FilesystemPersister[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.