Skip to content

Commit

Permalink
fix: is sequencer goerli fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tabaktoni committed Sep 30, 2022
1 parent c5a1a20 commit 2d43d1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/sequencerProvider.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Contract, Provider, SequencerProvider, stark } from '../src';
import { toBN } from '../src/utils/number';
import {
IS_SEQUENCER_GOERLY,
IS_SEQUENCER_GOERLI,
compiledErc20,
compiledL1L2,
describeIfNotDevnet,
Expand Down Expand Up @@ -90,7 +90,7 @@ describeIfSequencer('SequencerProvider', () => {
let l1l2ContractAddress: string;

beforeAll(async () => {
if (IS_SEQUENCER_GOERLY) {
if (IS_SEQUENCER_GOERLI) {
l1l2ContractAddress = '0x2863141e0d9a74e9b484c1f5b1e3a2f6cbb6b84df8233c7c1cbe31334d9aed8';
} else {
const { transaction_hash, contract_address } = await sequencerProvider.deployContract({
Expand Down

0 comments on commit 2d43d1b

Please sign in to comment.