Skip to content

Commit

Permalink
feat: update migrate wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
harisato committed Mar 29, 2024
1 parent 3966ca3 commit 591c19d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import { Module } from '@nestjs/common';
import { GraphqlModule } from '../graphql/graphql.module';
import { SystemCustodialWalletService } from './system-custodial-wallet.service';
import { SystemCustodialWalletGraphql } from './system-custodial-wallet.graphql';
import { UserWalletModule } from '../user-wallet/user-wallet.module';
import { SysKeyModule } from '../keys/syskey.module';

@Module({
imports: [GraphqlModule, UserWalletModule, SysKeyModule],
imports: [GraphqlModule, SysKeyModule],
providers: [SystemCustodialWalletService, SystemCustodialWalletGraphql],
exports: [SystemCustodialWalletService],
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export class SystemCustodialWalletService implements OnModuleInit {
constructor(
private configService: ConfigService,
private walletGraphql: SystemCustodialWalletGraphql,
private masterWalletService: MasterWalletService,
private sysKeyService: SysKeyService,
) { }

Expand Down

0 comments on commit 591c19d

Please sign in to comment.