Skip to content

Commit

Permalink
Move constants
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook committed Oct 23, 2024
1 parent 8c3985c commit f17faf5
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ describe('Transactions History Controller (Unit) - Imitation Transactions', () =
const suffixLength = 4;
const valueTolerance = BigInt(1);
const echoLimit = BigInt(10);
const chain = chainBuilder().build();
const safe = safeBuilder().build();

beforeEach(async () => {
jest.resetAllMocks();
Expand Down Expand Up @@ -111,9 +113,6 @@ describe('Transactions History Controller (Unit) - Imitation Transactions', () =
await app.close();
});

const chain = chainBuilder().build();
const safe = safeBuilder().build();

describe('Event spoofing', () => {
function parseUnits(value: bigint, decimals: number): bigint {
return value * BigInt(10 ** decimals);
Expand Down

0 comments on commit f17faf5

Please sign in to comment.