pub struct SignmessageParams {
pub address: Address,
pub message: String,
}Expand description
Sign a message with the private key of an address Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.
Fields§
§address: AddressThe bitcoin address to use for the private key.
message: StringThe message to create a signature of.
Trait Implementations§
Source§impl Debug for SignmessageParams
impl Debug for SignmessageParams
Auto Trait Implementations§
impl Freeze for SignmessageParams
impl RefUnwindSafe for SignmessageParams
impl Send for SignmessageParams
impl Sync for SignmessageParams
impl Unpin for SignmessageParams
impl UnwindSafe for SignmessageParams
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