We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 14251f7 + eec0764 commit ef0ff8fCopy full SHA for ef0ff8f
api/src/api/bitcoin.rs
@@ -23,3 +23,10 @@ pub struct BroadcastTransaction {
23
#[n(1)]
24
pub psbt: Vec<u8>,
25
}
26
+
27
+// If None, there's no passphrase, hide passphrased accounts
28
+#[quantum_link]
29
+pub struct ApplyPassphrase {
30
+ #[n(0)]
31
+ pub fingerprint: Option<String>,
32
+}
api/src/api/message.rs
@@ -103,6 +103,8 @@ pub enum QuantumLinkMessage {
103
BroadcastTransaction(#[n(0)] BroadcastTransaction),
104
#[n(13)]
105
AccountUpdate(#[n(0)] AccountUpdate),
106
+ #[n(27)]
107
+ ApplyPassphrase(#[n(0)] ApplyPassphrase),
108
#[n(14)]
109
SecurityCheck(#[n(0)] SecurityCheck),
110
#[n(15)]
0 commit comments