We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3effb83 commit 5c95f78Copy full SHA for 5c95f78
src/screens/Transfer/ExternalNode/Confirm.tsx
@@ -36,10 +36,10 @@ const ExternalConfirm = ({
36
37
useFocusEffect(
38
useCallback(() => {
39
- // Using a placeholder address here to enable the FeeCustom screen to function properly.
+ // Using an empty address here to enable the FeeCustom screen to function properly.
40
// The actual funding address will be updated later in createFundedChannel.
41
updateBeignetSendTransaction({
42
- outputs: [{ address: 'xxx', value: localBalance, index: 0 }],
+ outputs: [{ address: '', value: localBalance, index: 0 }],
43
});
44
}, [localBalance]),
45
);
0 commit comments