Skip to content

Commit

Permalink
fix(refactor): fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonKozAllB committed Aug 1, 2024
1 parent f03316c commit e0c8821
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/services/bridge/sol/jupiter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export class JupiterService {
exactOut: boolean
): Promise<{ tx: VersionedTransaction; amountIn?: string }> {
let quoteResponse: any;
console.log("J amount", amount);
try {
const swapMode = exactOut ? "ExactOut" : "ExactIn";
quoteResponse = await axios.get(`${this.jupiterUrl}/quote?inputMint=${stableTokenAddress}
Expand Down
2 changes: 0 additions & 2 deletions src/services/liquidity-pool/srb/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ export class SrbPoolService extends ChainPoolService {

async buildRawTransactionDeposit(params: LiquidityPoolsParamsWithAmount): Promise<RawTransaction> {
const poolContract = this.getContract(params.token.poolAddress, params.accountAddress);
console.log("sender", params.accountAddress);
console.log("poolAddress", params.token.poolAddress);
return (
await poolContract.deposit({
sender: params.accountAddress,
Expand Down

0 comments on commit e0c8821

Please sign in to comment.