mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-14 12:43:07 +02:00
lnd invoice success message fix
lnd invoice success message fix
This commit is contained in:
parent
e1afb792fb
commit
fdafe00c8b
4 changed files with 5 additions and 5 deletions
|
|
@ -9,5 +9,5 @@
|
|||
<link rel="stylesheet" href="styles.6dc77cb683437fd2a879.css"></head>
|
||||
<body>
|
||||
<rtl-app></rtl-app>
|
||||
<script src="runtime.f8adc32abf38a237412d.js"></script><script src="polyfills-es5.763f4f23e8aee5ec234d.js" nomodule></script><script src="polyfills.e59b6f9dc696bd89cf7f.js"></script><script src="main.ec8d88afe9847528250a.js"></script></body>
|
||||
<script src="runtime.f8adc32abf38a237412d.js"></script><script src="polyfills-es5.763f4f23e8aee5ec234d.js" nomodule></script><script src="polyfills.e59b6f9dc696bd89cf7f.js"></script><script src="main.a864964130872eb407fa.js"></script></body>
|
||||
</html>
|
||||
|
|
|
|||
1
angular/main.a864964130872eb407fa.js
Normal file
1
angular/main.a864964130872eb407fa.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -685,10 +685,10 @@ export class LNDEffects implements OnDestroy {
|
|||
});
|
||||
} else {
|
||||
const confirmationMsg = { 'Destination': action.payload[1].destination, 'Timestamp': action.payload[1].timestamp_str, 'Expiry': action.payload[1].expiry };
|
||||
confirmationMsg['Amount (' + ((undefined === store.information.smaller_currency_unit) ?
|
||||
'Sats' : store.information.smaller_currency_unit) + ')'] = action.payload[1].num_satoshis;
|
||||
confirmationMsg['Amount (' + ((undefined === store.nodeData.smaller_currency_unit) ?
|
||||
'Sats' : store.nodeData.smaller_currency_unit) + ')'] = action.payload[1].num_satoshis;
|
||||
const msg = {};
|
||||
msg['Total Fee (' + ((undefined === store.information.smaller_currency_unit) ? 'Sats' : store.information.smaller_currency_unit) + ')'] =
|
||||
msg['Total Fee (' + ((undefined === store.nodeData.smaller_currency_unit) ? 'Sats' : store.nodeData.smaller_currency_unit) + ')'] =
|
||||
(sendRes.payment_route.total_fees_msat / 1000);
|
||||
Object.assign(msg, confirmationMsg);
|
||||
this.store.dispatch(new RTLActions.OpenAlert({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue