mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-20 13:27:50 +02:00
Merge 8ac8e3801c into 6d1dbcb599
This commit is contained in:
commit
60bd3a7388
21 changed files with 675 additions and 95 deletions
|
|
@ -1,4 +1,4 @@
|
|||
-- withdrawals stores finalized static address withdrawals.
|
||||
-- withdrawals stores pending and finalized static address withdrawals.
|
||||
CREATE TABLE IF NOT EXISTS withdrawals (
|
||||
-- id is the auto-incrementing primary key for a withdrawal.
|
||||
id INTEGER PRIMARY KEY,
|
||||
|
|
@ -6,7 +6,8 @@ CREATE TABLE IF NOT EXISTS withdrawals (
|
|||
-- withdrawal_id is the unique identifier for the withdrawal.
|
||||
withdrawal_id BLOB NOT NULL UNIQUE,
|
||||
|
||||
-- withdrawal_tx_id is the transaction tx id of the withdrawal.
|
||||
-- withdrawal_tx_id is the confirmed transaction txid of the withdrawal.
|
||||
-- It remains NULL while the withdrawal is still pending.
|
||||
withdrawal_tx_id TEXT UNIQUE,
|
||||
|
||||
-- total_deposit_amount is the total amount of the deposits in satoshis.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue