Skip to content

Commit

Permalink
fix: fix substrate coin class
Browse files Browse the repository at this point in the history
TICKET: WIN-4296
  • Loading branch information
yash-bitgo committed Jan 28, 2025
1 parent c37b0a5 commit b316032
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/abstract-substrate/src/abstractSubstrateCoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as _ from 'lodash';
import {
BaseCoin,
BitGoBase,
KeyPair,
MPCAlgorithm,
ParsedTransaction,
ParseTransactionOptions,
Expand All @@ -12,7 +11,7 @@ import {
VerifyTransactionOptions,
} from '@bitgo/sdk-core';
import { BaseCoin as StaticsBaseCoin, CoinFamily } from '@bitgo/statics';
import { Interface, Utils } from './lib';
import { Interface, Utils, KeyPair as SubstrateKeyPair } from './lib';

const utils = Utils.default;

Expand Down Expand Up @@ -93,7 +92,7 @@ export class SubstrateCoin extends BaseCoin {
}

/** @inheritDoc **/
generateKeyPair(seed?: Buffer): KeyPair {
generateKeyPair(seed?: Buffer): SubstrateKeyPair {
throw new Error('Method not implemented.');
}

Expand Down

0 comments on commit b316032

Please sign in to comment.