pub struct OnchainPolicy {
    pub filter: PolicyFilter,
    pub min_funding_depth: u16,
}
Expand description

Policy to configure the onchain validator

Fields§

§filter: PolicyFilter

Policy filter

§min_funding_depth: u16

Minimum funding confirmations

Trait Implementations§

source§

impl Policy for OnchainPolicy

source§

fn policy_error(&self, tag: String, msg: String) -> Result<(), ValidationError>

A policy error has occurred. Policy errors can be converted to warnings by returning Ok(())
source§

fn temporary_policy_error( &self, tag: String, msg: String ) -> Result<(), ValidationError>

A temporary policy error has occurred. Policy errors can be converted to warnings by returning Ok(())
source§

fn policy_log(&self, _tag: String, msg: String)

Log at ERROR or WARN matching the policy error handling
source§

fn global_velocity_control(&self) -> VelocityControlSpec

Velocity control to apply to the entire node
source§

fn fee_velocity_control(&self) -> VelocityControlSpec

Velocity control to apply to L1 fees paid by the node
source§

fn max_channels(&self) -> usize

Maximum number of concurrent channels
source§

fn max_invoices(&self) -> usize

Maximum number of concurrent invoices (issued and approved)

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V