pub struct KeypoolrefillParams {
pub newsize: Option<i64>,
}Expand description
Refills each descriptor keypool in the wallet up to the specified number of new keys. By default, descriptor wallets have 4 active ranged descriptors (“legacy”, “p2sh-segwit”, “bech32”, “bech32m”), each with 1000 entries. Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.
Fields§
§newsize: Option<i64>The new keypool size
Trait Implementations§
Source§impl Debug for KeypoolrefillParams
impl Debug for KeypoolrefillParams
Auto Trait Implementations§
impl Freeze for KeypoolrefillParams
impl RefUnwindSafe for KeypoolrefillParams
impl Send for KeypoolrefillParams
impl Sync for KeypoolrefillParams
impl Unpin for KeypoolrefillParams
impl UnwindSafe for KeypoolrefillParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more