Skip to content

Commit

Permalink
fix: add FPC to allowlist (#5464)
Browse files Browse the repository at this point in the history
Fix for test failing on master. One of my prior PRs that added
validation went in and this test needed to updated to work with those
changes :)
  • Loading branch information
alexghr committed Mar 26, 2024
1 parent 9cac8a4 commit 424960f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
PrivateFeePaymentMethod,
PublicFeePaymentMethod,
TxStatus,
getContractClassFromArtifact,
} from '@aztec/aztec.js';
import { FPCContract, GasTokenContract, TokenContract } from '@aztec/noir-contracts.js';
import { getCanonicalGasTokenAddress } from '@aztec/protocol-contracts/gas-token';
Expand Down Expand Up @@ -34,6 +35,7 @@ describe('benchmarks/tx_size_fees', () => {

await ctx.aztecNode.setConfig({
feeRecipient: sequencerAddress,
allowedFeePaymentContractClasses: [getContractClassFromArtifact(FPCContract.artifact).id],
});

await publicDeployAccounts(aliceWallet, ctx.accounts);
Expand Down

0 comments on commit 424960f

Please sign in to comment.