Skip to content

Commit f6205c2

Browse files
feat(mbe): fix import
1 parent 52e6a5a commit f6205c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/api/master/handlerUtils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BitGo, RequestTracer } from 'bitgo';
1+
import { BitGo, CustomSigningFunction, RequestTracer } from 'bitgo';
22
import { EnclavedExpressClient } from './clients/enclavedExpressClient';
33

44
/**
@@ -56,7 +56,7 @@ export function makeCustomSigningFunction({
5656
enclavedExpressClient: EnclavedExpressClient;
5757
source: 'user' | 'backup';
5858
pub: string;
59-
}) {
59+
}): CustomSigningFunction {
6060
return async function customSigningFunction(signParams: any) {
6161
return enclavedExpressClient.signMultisig({
6262
txPrebuild: signParams.txPrebuild,

src/api/master/handlers/handleConsolidate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { RequestTracer, KeyIndices } from '@bitgo/sdk-core';
22
import logger from '../../../logger';
33
import { MasterApiSpecRouteRequest } from '../routers/masterApiSpec';
4-
import { getWalletAndSigningKeychain, makeCustomSigningFunction } from '../../../shared/coinUtils';
4+
import { getWalletAndSigningKeychain, makeCustomSigningFunction } from '../handlerUtils';
55

66
export async function handleConsolidate(
77
req: MasterApiSpecRouteRequest<'v1.wallet.consolidate', 'post'>,

0 commit comments

Comments
 (0)