Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup of issues
Browse files Browse the repository at this point in the history
benesjan committed Dec 11, 2024
1 parent 3be2e52 commit 2f03fe3
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -95,7 +95,6 @@ contract TokenBridge {
/// Claims the bridged tokens and makes them accessible in private. Note that recipient's address is not revealed
/// but the amount is. Hence it's most likely possible to determine to which L1 deposit this claim corresponds to
/// (unless there are multiple pending deposits of the same amount).
/// TODO(#8416): Consider creating a truly private claim flow.
#[private]
fn claim_private(
recipient: AztecAddress, // recipient of the bridged tokens
1 change: 1 addition & 0 deletions yarn-project/foundation/src/fields/point.ts
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ import { Fr } from './fields.js';
* Represents a Point on an elliptic curve with x and y coordinates.
* The Point class provides methods for creating instances from different input types,
* converting instances to various output formats, and checking the equality of points.
* TODO(#7386): Clean up this class.
*/
export class Point {
static ZERO = new Point(Fr.ZERO, Fr.ZERO, false);

0 comments on commit 2f03fe3

Please sign in to comment.