mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-21 22:42:21 +01:00
FIX: LN Invoice amount renders 0
This commit is contained in:
parent
2be60fa1bd
commit
69702fec4d
3 changed files with 17 additions and 1 deletions
|
@ -563,6 +563,10 @@ export class LightningCustodianWallet extends LegacyWallet {
|
|||
|
||||
if (!decoded.expiry) decoded.expiry = '3600'; // default
|
||||
|
||||
if (parseInt(decoded.num_satoshis) === 0 && decoded.num_millisatoshis > 0) {
|
||||
decoded.num_satoshis = (decoded.num_millisatoshis / 1000).toString();
|
||||
}
|
||||
|
||||
return (this.decoded_invoice_raw = decoded);
|
||||
}
|
||||
|
||||
|
|
|
@ -216,7 +216,7 @@ export default class ScanLndInvoice extends React.Component {
|
|||
if (typeof this.state.decoded !== 'object') {
|
||||
return true;
|
||||
} else {
|
||||
if (!this.state.decoded.hasOwnProperty('num_satoshis')) {
|
||||
if (!this.state.decoded.num_satoshis) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,7 +120,19 @@ describe('LightningCustodianWallet', () => {
|
|||
assert.ok(error);
|
||||
});
|
||||
|
||||
it('decode can handle zero sats but present msats', async () => {
|
||||
let l = new LightningCustodianWallet();
|
||||
let decoded = l.decodeInvoice(
|
||||
'lnbc89n1p0zptvhpp5j3h5e80vdlzn32df8y80nl2t7hssn74lzdr96ve0u4kpaupflx2sdphgfkx7cmtwd68yetpd5s9xct5v4kxc6t5v5s9gunpdeek66tnwd5k7mscqp2sp57m89zv0lrgc9zzaxy5p3d5rr2cap2pm6zm4n0ew9vyp2d5zf2mfqrzjqfxj8p6qjf5l8du7yuytkwdcjhylfd4gxgs48t65awjg04ye80mq7z990yqq9jsqqqqqqqqqqqqq05qqrc9qy9qsq9mynpa9ucxg53hwnvw323r55xdd3l6lcadzs584zvm4wdw5pv3eksdlcek425pxaqrn9u5gpw0dtpyl9jw2pynjtqexxgh50akwszjgq4ht4dh',
|
||||
);
|
||||
assert.strictEqual(decoded.num_satoshis, '8.9');
|
||||
});
|
||||
|
||||
it('can decode invoice locally & remotely', async () => {
|
||||
if (!process.env.BLITZHUB) {
|
||||
console.error('process.env.BLITZHUB not set, skipped');
|
||||
return;
|
||||
}
|
||||
let l2 = new LightningCustodianWallet();
|
||||
l2.setSecret(process.env.BLITZHUB);
|
||||
await l2.authorize();
|
||||
|
|
Loading…
Add table
Reference in a new issue