Type Alias WalletExport

Source
pub type WalletExport = FullyNodedExport;
👎Deprecated since 0.18.0: Please use [FullyNodedExport] instead
Expand description

Alias for FullyNodedExport

Aliased Type§

struct WalletExport {
    pub blockheight: u32,
    pub label: String,
    /* private fields */
}

Fields§

§blockheight: u32

Earliest block to rescan when looking for the wallet’s transactions

§label: String

Arbitrary label for the wallet

Implementations

Source§

impl FullyNodedExport

Source

pub fn export_wallet( wallet: &Wallet, label: &str, include_blockheight: bool, ) -> Result<Self, &'static str>

Export a wallet

This function returns an error if it determines that the wallet’s descriptor(s) are not supported by Bitcoin Core or don’t follow the standard derivation paths defined by BIP44 and others.

If include_blockheight is true, this function will look into the wallet’s database for the oldest transaction it knows and use that as the earliest block to rescan.

If the database is empty or include_blockheight is false, the blockheight field returned will be 0.

Source

pub fn descriptor(&self) -> String

Return the external descriptor

Source

pub fn change_descriptor(&self) -> Option<String>

Return the internal descriptor, if present

Trait Implementations

Source§

impl Debug for FullyNodedExport

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for FullyNodedExport

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for FullyNodedExport

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for FullyNodedExport

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Serialize for FullyNodedExport

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more