d5c2ab33fc
= Add eth_node_fingerprint to block that can be imitated by both hot and cold imports - Only sync missing blocks (blocks that are missing or don't share a fingerprint) on cold import - Set block is_final status after import
14 lines
282 B
PL/PgSQL
14 lines
282 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE blocks
|
|
ADD COLUMN eth_node_fingerprint VARCHAR(128);
|
|
|
|
UPDATE blocks
|
|
SET eth_node_fingerprint = (
|
|
SELECT eth_node_id FROM eth_nodes WHERE eth_nodes.id = blocks.eth_node_id
|
|
);
|
|
|
|
ALTER TABLE blocks
|
|
ALTER COLUMN eth_node_fingerprint SET NOT NULL;
|
|
|
|
COMMIT; |