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.
1 parent 143699b commit 81921d6Copy full SHA for 81921d6
1 file changed
silentpayments/src/lib.rs
@@ -94,6 +94,9 @@ pub fn get_smallest_lexicographic_outpoint(outpoints: &[OutPoint]) -> [u8; 36] {
94
result
95
}
96
97
+// Do not report coverage for this function as it is a wrapper around external lib function
98
+// shared_secret_point
99
+#[cfg_attr(coverage_nightly, coverage(off))]
100
pub fn compute_shared_secret(sk: &SecretKey, pk: &PublicKey) -> PublicKey {
101
let mut ss_bytes = [0u8; 65];
102
ss_bytes[0] = 0x04;
0 commit comments