This commit is contained in:
Shrenuj Bansal
2023-10-05 11:52:22 -04:00
parent 00b3335765
commit f01096bca3
7 changed files with 115 additions and 42 deletions
+13 -8
View File
@@ -1,13 +1,17 @@
create table wdpost_tasks
(
task_id int not null,
tskey varchar,
current_epoch bigint,
period_start bigint,
index bigint,
open bigint,
close bigint,
challenge bigint,
task_id int not null
constraint wdpost_tasks_pkey
primary key,
tskey bytea not null,
current_epoch bigint not null,
period_start bigint not null,
index bigint not null
constraint wdpost_tasks_index_key
unique,
open bigint not null,
close bigint not null,
challenge bigint not null,
fault_cutoff bigint,
wpost_period_deadlines bigint,
wpost_proving_period bigint,
@@ -16,3 +20,4 @@ create table wdpost_tasks
fault_declaration_cutoff bigint
);