Skip to content

Commit

Permalink
fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed May 10, 2024
1 parent 3cc22ee commit f101160
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/circuits.js/src/structs/complete_address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class CompleteAddress {
const expectedAddress = computeAddress(publicKeysHash, this.partialAddress);
if (!expectedAddress.equals(this.address)) {
throw new Error(
`Address cannot be derived from pubkey and partial address (received ${this.address.toString()}, derived ${expectedAddress.toString()})`,
`Address cannot be derived from public keys and partial address (received ${this.address.toString()}, derived ${expectedAddress.toString()})`,
);
}
}
Expand Down
2 changes: 2 additions & 0 deletions yarn-project/pxe/src/pxe_service/pxe_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ import {
type CompleteAddress,
FunctionData,
MAX_PUBLIC_CALL_STACK_LENGTH_PER_TX,
type PartialAddress,
type PrivateKernelTailCircuitPublicInputs,
type PublicCallRequest,
computeContractClassId,
getContractClassFromArtifact,
Expand Down

0 comments on commit f101160

Please sign in to comment.