Skip to content

Commit 3b9465a

Browse files
committed
Merge remote-tracking branch 'origin' into feature/block_context
2 parents 67d4a67 + 1582a36 commit 3b9465a

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

MakefileEc2.mk

+31
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,34 @@ 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+
40+
build-bk-test-morph-test-qanet-to-morph-geth-qanet:
41+
if [ ! -d dist ]; then mkdir -p dist; fi
42+
$(GORUN) build/ci.go install ./cmd/geth
43+
@echo "Done building."
44+
cp build/bin/geth dist/
45+
tar -czvf morph-geth.tar.gz dist
46+
aws s3 cp morph-geth.tar.gz s3://morph-7637-morph-technical-department-qanet-data/morph-setup/morph-geth.tar.gz
47+
48+
build-bk-test-morph-test-qanet-to-morph-nccc-geth-qanet:
49+
if [ ! -d dist ]; then mkdir -p dist; fi
50+
$(GORUN) build/ci.go install ./cmd/geth
51+
@echo "Done building."
52+
cp build/bin/geth dist/
53+
tar -czvf morph-nccc-geth.tar.gz dist
54+
aws s3 cp morph-nccc-geth.tar.gz s3://morph-7637-morph-technical-department-qanet-data/morph-setup/morph-nccc-geth.tar.gz

core/state_transition.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -368,12 +368,18 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {
368368
return nil, err
369369
}
370370
if st.gas < gas {
371-
return nil, fmt.Errorf("%w: have %d, want %d", ErrIntrinsicGas, st.gas, gas)
371+
// Allow L1 message transactions to be included in the block but fail during execution,
372+
// instead of rejecting them outright at this point.
373+
if st.msg.IsL1MessageTx() {
374+
gas = st.gas
375+
} else {
376+
return nil, fmt.Errorf("%w: have %d, want %d", ErrIntrinsicGas, st.gas, gas)
377+
}
372378
}
373379
st.gas -= gas
374380

375381
// Check clause 6
376-
if msg.Value().Sign() > 0 && !st.evm.Context.CanTransfer(st.state, msg.From(), msg.Value()) {
382+
if msg.Value().Sign() > 0 && !msg.IsL1MessageTx() && !st.evm.Context.CanTransfer(st.state, msg.From(), msg.Value()) {
377383
return nil, fmt.Errorf("%w: address %v", ErrInsufficientFundsForTransfer, msg.From().Hex())
378384
}
379385

rollup/tracing/tracing.go

+7
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,13 @@ func (env *TraceEnv) getTxResult(state *state.StateDB, index int, block *types.B
386386
// merge required proof data
387387
proofAccounts := structLogger.UpdatedAccounts()
388388
proofAccounts[vmenv.FeeRecipient()] = struct{}{}
389+
// add from/to address if it does not exist
390+
if _, ok := proofAccounts[from]; !ok {
391+
proofAccounts[from] = struct{}{}
392+
}
393+
if _, ok := proofAccounts[*to]; !ok {
394+
proofAccounts[*to] = struct{}{}
395+
}
389396
for addr := range proofAccounts {
390397
addrStr := addr.String()
391398

0 commit comments

Comments
 (0)