Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix(clever): Fix formatting and remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
immasandwich committed Oct 6, 2022
1 parent 0c60404 commit 4cff23e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/apps/clever/clever.module.ts
Expand Up @@ -3,8 +3,8 @@ import { AbstractApp } from '~app/app.dynamic-module';

import { CleverAppDefinition, CLEVER_DEFINITION } from './clever.definition';
import { CleverContractFactory } from './contracts';
import { EthereumCleverLeverTokenFetcher } from './ethereum/clever.lever.token-fetcher';
import { EthereumCleverFurnaceContractPositionFetcher } from './ethereum/clever.furnace.contract-position-fetcher';
import { EthereumCleverLeverTokenFetcher } from './ethereum/clever.lever.token-fetcher';
import { EthereumCleverLockContractPositionFetcher } from './ethereum/clever.lock.contract-position-fetcher';

@Register.AppModule({
Expand All @@ -17,4 +17,4 @@ import { EthereumCleverLockContractPositionFetcher } from './ethereum/clever.loc
EthereumCleverLockContractPositionFetcher,
],
})
export class CleverAppModule extends AbstractApp() { }
export class CleverAppModule extends AbstractApp() {}
Expand Up @@ -42,7 +42,6 @@ export class EthereumCleverFurnaceContractPositionFetcher extends ContractPositi

async getTokenBalancesPerPosition({ address, contract }: GetTokenBalancesParams<CleverFurnace>) {
const userInfo = await contract.userInfo(address);
console.warn('here', userInfo);
return [userInfo.unrealised, userInfo.realised];
}
}

0 comments on commit 4cff23e

Please sign in to comment.