Skip to content

Commit d0bc6c3

Browse files
committed
Implements get_session_key for full_stack_target
1 parent 948696e commit d0bc6c3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

fuzz/fuzz_targets/full_stack_target.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,10 @@ impl KeysInterface for KeyProvider {
265265
}
266266
}
267267
}
268+
269+
fn get_session_key(&self) -> SecretKey {
270+
SecretKey::from_slice(&Secp256k1::without_caps(), &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap()
271+
}
268272
}
269273

270274
#[inline]

0 commit comments

Comments
 (0)