make withdrawals_root not null
All checks were successful
Docker Build / Dummy job (pull_request) Successful in 3s
Docker Build / Run docker build (pull_request) Successful in 39s

This commit is contained in:
Roy Crihfield 2024-06-10 15:34:15 +02:00
parent b64d747e4c
commit b50a983e1a

View File

@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS eth.header_cids (
timestamp BIGINT NOT NULL,
coinbase VARCHAR(66) NOT NULL,
canonical BOOLEAN NOT NULL DEFAULT TRUE,
withdrawals_root VARCHAR(66),
withdrawals_root VARCHAR(66) NOT NULL,
PRIMARY KEY (block_hash, block_number)
);