mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-23 12:09:37 +00:00
3.13 Better document the offset mapping
This commit is contained in:
parent
677b9b681f
commit
df67b7d94c
1 changed files with 3 additions and 0 deletions
|
@ -114,6 +114,9 @@ impl Scanner {
|
|||
/// Due to Bitcoin's requirement that points are even, not every offset may be used.
|
||||
/// If an offset isn't usable, it will be incremented until it is. If this offset is already
|
||||
/// present, None is returned. Else, Some(offset) will be, with the used offset.
|
||||
///
|
||||
/// This means offsets are surjective, not bijective, and the order offsets are registered in
|
||||
/// may determine the validity of future offsets.
|
||||
pub fn register_offset(&mut self, mut offset: Scalar) -> Option<Scalar> {
|
||||
// This loop will terminate as soon as an even point is found, with any point having a ~50%
|
||||
// chance of being even
|
||||
|
|
Loading…
Reference in a new issue