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

Commit

Permalink
fix: Resolve conflict in rename of AbstractApp (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
immasandwich authored Apr 26, 2022
1 parent 3da8a03 commit 989b3f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/illuvium/illuvium.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Module } from '@nestjs/common';

import { AbstractDynamicApp } from '~app/app.dynamic-module';
import { AbstractApp } from '~app/app.dynamic-module';

import { IlluviumContractFactory } from './contracts';
import { EthereumIlluviumBalanceFetcher } from './ethereum/illuvium.balance-fetcher';
Expand All @@ -17,4 +17,4 @@ import { IlluviumAppDefinition } from './illuvium.definition';
EthereumIlluviumBalanceFetcher,
],
})
export class IlluviumAppModule extends AbstractDynamicApp<IlluviumAppModule>() {}
export class IlluviumAppModule extends AbstractApp() {}

0 comments on commit 989b3f5

Please sign in to comment.