Skip to content

Commit 48b83ab

Browse files
committed
refactor: remove unneeded changes
TICKET: WP-6461
1 parent ee66fb5 commit 48b83ab

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

modules/express/src/clientRoutes.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import {
2828
TssEcdsaStep1ReturnMessage,
2929
TssEcdsaStep2ReturnMessage,
3030
UnsupportedCoinError,
31-
VerifyAddressOptions,
3231
Wallet,
3332
} from '@bitgo/sdk-core';
3433
import { BitGo, BitGoOptions, Coin, CustomSigningFunction, SignedTransaction, SignedTransactionRequest } from 'bitgo';
@@ -671,7 +670,7 @@ export async function handleV2IsWalletAddress(
671670
const bitgo = req.bitgo;
672671
const coin = bitgo.coin(req.decoded.coin);
673672
const wallet = await coin.wallets().get({ id: req.decoded.id });
674-
return await wallet.baseCoin.isWalletAddress(req.decoded as VerifyAddressOptions);
673+
return await wallet.baseCoin.isWalletAddress(req.decoded as any);
675674
}
676675

677676
/**

0 commit comments

Comments
 (0)