Allow Parity as ingest node (#36)

* Upgrade go-ethereum to v1.8

* Add Node Info for parity nodes

* Upgrade start_private_blockchain to use v1.8
This commit is contained in:
Matt K
2018-03-07 15:29:21 -06:00
committed by GitHub
parent 203f9b47d3
commit 5a652190d9
624 changed files with 77003 additions and 14158 deletions
@@ -0,0 +1,2 @@
ALTER TABLE blocks
ALTER COLUMN size TYPE BIGINT USING size::BIGINT;
@@ -0,0 +1,2 @@
ALTER TABLE blocks
ALTER COLUMN size TYPE VARCHAR USING size::VARCHAR;
+1 -1
View File
@@ -77,7 +77,7 @@ CREATE TABLE blocks (
hash character varying(66),
nonce character varying(20),
parenthash character varying(66),
size bigint,
size character varying,
uncle_hash character varying(66),
node_id integer NOT NULL,
is_final boolean,