Skip to content

Commit

Permalink
fixed lint issues, removed unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
fabcotech committed Jul 9, 2024
1 parent 55f3e56 commit e77d246
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/TenThousandsTransfers.spec.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import { Blockchain, SandboxContract, TreasuryContract, printTransactionFees } from '@ton/sandbox';
import { Cell, toNano } from '@ton/core';
import { Blockchain, SandboxContract, TreasuryContract } from '@ton/sandbox';
import '@ton/test-utils';
import { compile } from '@ton/blueprint';

describe('[Ten thousands transfers]', () => {
let blockchain: Blockchain;
let deployer: SandboxContract<TreasuryContract>;
let user1: null | SandboxContract<TreasuryContract> = null;
let user2: null | SandboxContract<TreasuryContract> = null;
const transfers: {
Expand Down

0 comments on commit e77d246

Please sign in to comment.