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.
pubkey_xonly
_pubkey_xonly
1 parent 2c73c41 commit 83fa375Copy full SHA for 83fa375
packages/wasm-utxo/src/psbt.rs
@@ -17,7 +17,7 @@ use wasm_bindgen::{JsError, JsValue};
17
struct SingleKeySigner {
18
privkey: PrivateKey,
19
pubkey: PublicKey,
20
- pubkey_xonly: XOnlyPublicKey,
+ _pubkey_xonly: XOnlyPublicKey,
21
fingerprint: Fingerprint,
22
fingerprint_xonly: Fingerprint,
23
}
@@ -33,7 +33,7 @@ impl SingleKeySigner {
33
SingleKeySigner {
34
privkey,
35
pubkey,
36
- pubkey_xonly,
+ _pubkey_xonly: pubkey_xonly,
37
fingerprint: SingleKeySigner::fingerprint(SinglePubKey::FullKey(pubkey)),
38
fingerprint_xonly: SingleKeySigner::fingerprint(SinglePubKey::XOnly(pubkey_xonly)),
39
0 commit comments