Fixed labels in watches and added tests

This commit is contained in:
kexkey
2021-09-06 15:08:10 -04:00
parent d7cc865cad
commit 8268247c83
5 changed files with 13 additions and 10 deletions

View File

@@ -29,6 +29,7 @@ CREATE TABLE watching (
);
CREATE INDEX idx_watching_address ON watching (address);
CREATE UNIQUE INDEX idx_watching_01 ON watching (address, callback0conf, callback1conf);
CREATE INDEX idx_watching_label ON watching (label);
CREATE TABLE watching_tx (
watching_id INTEGER REFERENCES watching,