Files
darkfi/bin/drk/wallet.sql
2024-05-10 14:40:37 +03:00

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
);