File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ) {
Original file line number Diff line number Diff 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 ) ) {
You can’t perform that action at this time.
0 commit comments