Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Nov 11, 2024
1 parent 086bc81 commit 3f31918
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion yarn-project/aztec.js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export {
type FunctionSelectorLike,
type L2AmountClaim,
type L2Claim,
type L2AmountClaimWithRecipient as L2RedeemableAmountClaim,
type L2AmountClaimWithRecipient,
type WrappedFieldLike,
} from './utils/index.js';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
type L1TokenManager,
L1TokenPortalManager,
type L2AmountClaim,
type L2RedeemableAmountClaim,
type L2AmountClaimWithRecipient,
Note,
type PXE,
type SiblingPath,
Expand Down Expand Up @@ -256,7 +256,7 @@ export class CrossChainTestHarness {
}

async consumeMessageOnAztecAndMintPrivately(
claim: Pick<L2RedeemableAmountClaim, 'claimAmount' | 'claimSecret' | 'messageLeafIndex' | 'recipient'>,
claim: Pick<L2AmountClaimWithRecipient, 'claimAmount' | 'claimSecret' | 'messageLeafIndex' | 'recipient'>,
) {
this.logger.info('Consuming messages on L2 privately');
const { recipient, claimAmount, claimSecret: secretForL2MessageConsumption, messageLeafIndex } = claim;
Expand Down

0 comments on commit 3f31918

Please sign in to comment.