mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
10 lines
256 B
SQL
10 lines
256 B
SQL
-- Wallet definitions for drk.
|
|
-- We store data that is needed for wallet operations.
|
|
|
|
-- Transactions history
|
|
CREATE TABLE IF NOT EXISTS transactions_history (
|
|
transaction_hash TEXT PRIMARY KEY NOT NULL,
|
|
status TEXT NOT NULL,
|
|
tx BLOB NOT NULL
|
|
);
|