mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-10 07:08:05 -05:00
10 lines
268 B
SQL
10 lines
268 B
SQL
-- Wallet definitions for drk.
|
|
-- We store data that is needed for wallet operations.
|
|
|
|
-- Broadcasted transactions history
|
|
CREATE TABLE IF NOT EXISTS transactions_history (
|
|
transaction_hash TEXT PRIMARY KEY NOT NULL,
|
|
status TEXT NOT NULL,
|
|
tx BLOB NOT NULL
|
|
);
|