Skip to content

Commit 2c9502f

Browse files
committed
Minor changes
1 parent befa9da commit 2c9502f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/db/entities/LiquidityPoolSwap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class LiquidityPoolSwap extends BaseEntity {
3535
swapInAmount: number;
3636

3737
@Column({ type: 'bigint', nullable: true, unsigned: true })
38-
minReceive: number | undefined;
38+
minReceive: number;
3939

4040
@Column({ type: 'bigint', nullable: true, unsigned: true })
4141
actualReceive: number | undefined;

src/dex/MinswapV2Analyzer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import { LiquidityPoolDeposit } from '../db/entities/LiquidityPoolDeposit';
2525
import { LiquidityPoolWithdraw } from '../db/entities/LiquidityPoolWithdraw';
2626
import { OperationStatus } from '../db/entities/OperationStatus';
2727
import { LiquidityPool } from '../db/entities/LiquidityPool';
28-
import { logInfo } from '../logger';
2928

3029
/**
3130
* MinswapV2 constants.

0 commit comments

Comments
 (0)