Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Aug 3, 2023
1 parent 89e6654 commit 3e73b40
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/dex/algebra/algebra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ export class Algebra extends SimpleExchange implements IDex<AlgebraData> {
this.getPoolIdentifier(srcAddress, destAddress)
] as AlgebraEventPool | null | undefined;

console.log('POOL : ', pool);
if (pool === null) return null;

if (pool) {
Expand Down Expand Up @@ -439,7 +438,6 @@ export class Algebra extends SimpleExchange implements IDex<AlgebraData> {

let state = pool.getState(blockNumber);

console.log('STATE: ', state);
if (state === null) {
if (this.network === Network.ZKEVM) {
if (pool.initFailed) return null;
Expand Down

0 comments on commit 3e73b40

Please sign in to comment.