wallet: Store merkle tree leaf positions for own coins.

This commit is contained in:
parazyd
2022-04-16 19:14:23 +02:00
parent a2b6521583
commit ac46e46e49
2 changed files with 17 additions and 11 deletions

View File

@@ -7,5 +7,6 @@ CREATE TABLE IF NOT EXISTS coins(
token_id BLOB NOT NULL,
secret BLOB NOT NULL,
is_spent BOOLEAN NOT NULL,
nullifier BLOB NOT NULL
nullifier BLOB NOT NULL,
leaf_position BLOB NOT NULL
);