Skip to content

Commit

Permalink
Temporarily skip native fee payment
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed May 21, 2024
1 parent 128de4d commit e1ec553
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions yarn-project/end-to-end/src/benchmarks/bench_tx_size_fees.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,16 @@ describe('benchmarks/tx_size_fees', () => {

it.each<[string, () => FeePaymentMethod | undefined, bigint]>([
['no', () => undefined, 0n],
[
'native fee',
() => new NativeFeePaymentMethod(),
// DA:
// non-rev: 1 nullifiers, overhead; rev: 2 note hashes, 1 nullifier, 1168 B enc note logs, 0 B enc logs, 0 B unenc logs, teardown
// L2:
// non-rev: 0; rev: 0
200021120n,
],
// TODO(palla/gas): Fix and reenable
// [
// 'native fee',
// () => new NativeFeePaymentMethod(),
// // DA:
// // non-rev: 1 nullifiers, overhead; rev: 2 note hashes, 1 nullifier, 1168 B enc note logs, 0 B enc logs, 0 B unenc logs, teardown
// // L2:
// // non-rev: 0; rev: 0
// 200021120n,
// ],
[
'public fee',
() => new PublicFeePaymentMethod(token.address, fpc.address, aliceWallet),
Expand Down

0 comments on commit e1ec553

Please sign in to comment.