Skip to content

Commit 50a1ac8

Browse files
authored
Merge pull request #163 from morph-l2/review
feat: Remove code for skipping L1 message
2 parents 0ff2a10 + 87d4785 commit 50a1ac8

13 files changed

+103
-598
lines changed

MakefileEc2.mk

+16
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,19 @@ build-bk-prod-morph-prod-mainnet-to-morph-nccc-geth:
2121
aws s3 cp morph-nccc-geth.tar.gz s3://morph-0582-morph-technical-department-mainnet-data/morph-setup/morph-nccc-geth.tar.gz
2222

2323

24+
# build for holesky
25+
build-bk-prod-morph-prod-testnet-to-morph-geth-holesky:
26+
if [ ! -d dist ]; then mkdir -p dist; fi
27+
$(GORUN) build/ci.go install ./cmd/geth
28+
cp build/bin/geth dist/
29+
tar -czvf morph-geth.tar.gz dist
30+
aws s3 cp morph-geth.tar.gz s3://morph-0582-morph-technical-department-testnet-data/testnet/holesky/morph-setup/morph-geth.tar.gz
31+
32+
build-bk-prod-morph-prod-testnet-to-morph-nccc-geth-holesky:
33+
if [ ! -d dist ]; then mkdir -p dist; fi
34+
$(GORUN) build/ci.go install ./cmd/geth
35+
@echo "Done building."
36+
cp build/bin/geth dist/
37+
tar -czvf morph-nccc-geth.tar.gz dist
38+
aws s3 cp morph-nccc-geth.tar.gz s3://morph-0582-morph-technical-department-testnet-data/testnet/holesky/morph-setup/morph-nccc-geth.tar.gz
39+

core/rawdb/accessors_skipped_txs.go

-249
This file was deleted.

0 commit comments

Comments
 (0)