diff --git a/svelte/src/user_home/Transactions.svelte b/svelte/src/user_home/Transactions.svelte index b588426..91c65a8 100644 --- a/svelte/src/user_home/Transactions.svelte +++ b/svelte/src/user_home/Transactions.svelte @@ -128,9 +128,16 @@ onMount(() => {

Deposit Bitcoin

You can deposit credit on your pixeldrain account with Bitcoin. We - support regular Bitcoin transactions and Lightning transactions. You - must pay the full amount as stated on the invoice, else your payment - will fail. + support regular Bitcoin transactions and Lightning transactions (if + you open a + channel + ). You must pay the full amount as stated on the invoice, else your + payment will fail. +

+

+ Do note that it is not possible to withdraw Bitcoin from your + pixeldrain account. It's not a wallet. Any amount of money you + deposit has to be used up.

BTCPay server logo @@ -157,12 +164,12 @@ onMount(() => { {#each invoices as row (row.id)} - {#if row.status === "New" || row.status === "InvoiceCreated" || show_expired} + {#if row.status === "InvoiceCreated" || row.status === "InvoiceProcessing" || show_expired} {formatDate(row.time, true, true, false)} - {#if row.status === "New" || row.status === "InvoiceCreated"} + {#if row.status === "InvoiceCreated"} New (waiting for payment) {:else if row.status === "InvoiceProcessing"} Payment received, waiting for confirmations