Skip to content

Commit

Permalink
fix: aztec address random (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirasistant authored Mar 28, 2023
1 parent f544403 commit 2366d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/foundation/src/aztec-address/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class AztecAddress {
}

public static random() {
return new AztecAddress(randomBytes(64));
return new AztecAddress(randomBytes(32));
}

public equals(rhs: AztecAddress) {
Expand Down

0 comments on commit 2366d54

Please sign in to comment.