Skip to content

Commit 2e9b628

Browse files
committed
fix: undo hardware call changes
1 parent b1b2bac commit 2e9b628

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/core/Ledger/Ledger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const withLedgerKeyring = async <CallbackResult = void>(
4848
}) => Promise<CallbackResult>,
4949
): Promise<CallbackResult> => {
5050
const keyringController = Engine.context.KeyringController;
51-
return await keyringController.withKeyringV2(
51+
return await keyringController.withKeyring(
5252
{ type: ExtendedKeyringTypes.ledger },
5353
({ keyring, metadata }) => {
5454
if (!(keyring instanceof LedgerKeyring)) {

app/core/QrKeyring/QrKeyring.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const withQrKeyring = async <CallbackResult = void>(
2121
metadata: KeyringMetadata;
2222
}) => Promise<CallbackResult>,
2323
): Promise<CallbackResult> =>
24-
await Engine.context.KeyringController.withKeyringV2(
24+
await Engine.context.KeyringController.withKeyring(
2525
{ type: ExtendedKeyringTypes.qr },
2626
({ keyring, metadata }) => {
2727
if (!(keyring instanceof QrKeyring)) {

0 commit comments

Comments
 (0)