From 11dea54b442efe92952f44f38b28011663d37011 Mon Sep 17 00:00:00 2001 From: rachel-rose Date: Fri, 28 May 2021 20:12:55 +0200 Subject: [PATCH] fixed typo on wallet schema --- res/schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/schema.sql b/res/schema.sql index a2d44c340..e77c72be8 100644 --- a/res/schema.sql +++ b/res/schema.sql @@ -7,8 +7,8 @@ CREATE TABLE IF NOT EXISTS keys( ); CREATE INDEX IF NOT EXISTS key_public on keys(key_public); CREATE TABLE IF NOT EXISTS coins( - coin BLOB NOT NULL - witness BLOB NOT NULL + coin BLOB NOT NULL, + witness BLOB NOT NULL, serial BLOB NOT NULL, value INT NOT NULL, coin_blind BLOB NOT NULL,