mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
a191296f05
Pr is ready to review and merge. This PR includes implementing and integrating Ethereum Deneb's hard work with the Caplin Ethereum client. Changes: - Full compatibility with Deneb Ethereum hard fork - Added new EIPs introduced in Deneb. (`EIP-4788`, `EIP-4844`, `EIP-7044`, `EIP-7045`, `EIP-7514`) - Tests integration --------- Co-authored-by: Giulio <giulio.rebuffo@gmail.com>
19 lines
623 B
Makefile
19 lines
623 B
Makefile
.PHONY: clean setup example run clean
|
|
|
|
|
|
tests:
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/ethereum/consensus-spec-tests
|
|
cd consensus-spec-tests && git checkout 080c96fbbf3be58e75947debfeb9ba3b2b7c9748 && git lfs pull --exclude=tests/general,tests/minimal && cd ..
|
|
mv consensus-spec-tests/tests .
|
|
rm -rf consensus-spec-tests
|
|
rm -rf tests/minimal
|
|
# not needed for now
|
|
rm -rf tests/mainnet/eip6110
|
|
# FIXME: Add fork choice coverage for deneb
|
|
rm -rf tests/mainnet/deneb/fork_choice
|
|
clean:
|
|
rm -rf tests
|
|
|
|
mainnet:
|
|
CGO_CFLAGS=-D__BLST_PORTABLE__ go test -tags=spectest -run=/mainnet -failfast -v --timeout 30m
|