updates for light sync transactions

This commit is contained in:
Rob Mulholand
2019-03-28 14:31:17 -05:00
parent 79e011aad2
commit 54d46638a8
39 changed files with 769 additions and 256 deletions
+9 -4
View File
@@ -161,7 +161,7 @@ CREATE TABLE public.full_sync_transactions (
gaslimit numeric,
gasprice numeric,
hash character varying(66),
input_data character varying,
input_data bytea,
nonce numeric,
raw bytea,
tx_from character varying(66),
@@ -266,10 +266,15 @@ CREATE TABLE public.light_sync_transactions (
id integer NOT NULL,
header_id integer NOT NULL,
hash text,
raw jsonb,
tx_index integer,
gaslimit numeric,
gasprice numeric,
input_data bytea,
nonce numeric,
raw bytea,
tx_from text,
tx_to text
tx_index integer,
tx_to text,
value numeric
);