Skip to content

Commit

Permalink
fix: channelRKIssue
Browse files Browse the repository at this point in the history
  • Loading branch information
cakesoft-vaibhav committed Nov 22, 2024
1 parent 92cf300 commit 26e9add
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/screens/QRScreens/SignWithChannel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,21 @@ function SignWithChannel() {
},
])
);
if (isRemoteKey) {
navgation.dispatch(
CommonActions.navigate({
name: 'ShowPSBT',
params: {
data: signedSerializedPSBT,
encodeToBytes: false,
title: 'Signed PSBT',
subtitle: 'Please scan until all the QR data has been retrieved',
type: SignerType.KEEPER, // signer used as external key
},
})
);
return;
}
dispatch(updatePSBTEnvelops({ signedSerializedPSBT, xfp: vaultKey.xfp }));
navgation.dispatch(CommonActions.navigate({ name: 'SignTransactionScreen', merge: true }));
} catch (error) {
Expand Down

0 comments on commit 26e9add

Please sign in to comment.