Skip to content

Commit

Permalink
fixing gas estimation test
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Jan 20, 2025
1 parent 02a96c1 commit b0360ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_fees/gas_estimation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('e2e_fees gas_estimation', () => {

it('estimates gas with public payment method', async () => {
// TODO(#11324): Reset this value back to zero.
const estimatedGasPadding = 0.00068359375;
const estimatedGasPadding = 0.1;

const teardownFixedFee = gasSettings.teardownGasLimits.computeFee(gasSettings.maxFeesPerGas).toBigInt();
const paymentMethod = new PublicFeePaymentMethod(bananaFPC.address, aliceWallet);
Expand Down Expand Up @@ -125,7 +125,7 @@ describe('e2e_fees gas_estimation', () => {

it('estimates gas for public contract initialization with Fee Juice payment method', async () => {
// TODO(#11324): Reset this value back to zero.
const estimatedGasPadding = 0.00068359375;
const estimatedGasPadding = 0.1;

const paymentMethod = new FeeJuicePaymentMethod(aliceAddress);
const deployMethod = () => BananaCoin.deploy(aliceWallet, aliceAddress, 'TKN', 'TKN', 8);
Expand Down

0 comments on commit b0360ed

Please sign in to comment.