Skip to content

Commit 8f9790a

Browse files
committed
fix: rename interface in wallet factory
1 parent 80838fd commit 8f9790a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/entities/factories/WalletFactory.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Factory } from './Factory';
22
import { Context } from '../../Context';
3-
import { Wallet, Params, UniqueIdentifier } from '../Wallet';
3+
import { Wallet, Params, UniqueIdentifiers } from '../Wallet';
44

5-
export class WalletFactory extends Factory<Wallet, Params, UniqueIdentifier> {
5+
export class WalletFactory extends Factory<Wallet, Params, UniqueIdentifiers> {
66
protected generateProperties = async (uid: string) => {
77
const { address } = Wallet.unserialize(uid);
88

0 commit comments

Comments
 (0)