Files
zk-account-abstraction/gascalc/1-simple-wallet.gas.ts
Dror Tirosh 695e490484 AA-61 rename wallet to account (#134)
* rename IWallet to IAccount (and all other contracts, e.g. SimpleWallet to SimpleAccount, etc..)
2022-11-27 17:22:37 +02:00

18 lines
596 B
TypeScript

import { GasChecker } from './GasChecker'
context('simple account', function () {
this.timeout(60000)
const g = new GasChecker()
it('simple 1', async function () {
await g.addTestRow({ title: 'simple', count: 1, diffLastGas: false })
await g.addTestRow({ title: 'simple - diff from previous', count: 2, diffLastGas: true })
})
it('simple 10', async function () {
if (g.skipLong()) this.skip()
await g.addTestRow({ title: 'simple', count: 10, diffLastGas: false })
await g.addTestRow({ title: 'simple - diff from previous', count: 11, diffLastGas: true })
})
})