Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ff2761d
test: add stress test script
panos-xyz Mar 5, 2026
7f28e2f
fix: pre-audit security fixes across multiple crates
panos-xyz Mar 6, 2026
8774a28
fix: additional pre-audit security hardening
panos-xyz Mar 6, 2026
7a4ce01
fix: pre-audit fixes for security review
panos-xyz Mar 6, 2026
349e6a4
fix: pre-audit security hardening (block size, MorphTx version, fee r…
panos-xyz Mar 6, 2026
e5594a6
refactor: load precompile contracts once
panos-xyz Mar 6, 2026
5524569
fix: align token transfer check with go-eth and clean up txpool removal
panos-xyz Mar 7, 2026
7ad5071
perf: tune reth persistence threshold to reduce disk I/O contention
panos-xyz Mar 7, 2026
e732634
refactor: add geth url
panos-xyz Mar 7, 2026
e02117f
fix: use evm_call for ERC20 token fee to preserve Transfer logs in re…
panos-xyz Mar 8, 2026
70e27c6
fix: decouple token fee logs from handler pipeline to survive tx revert
panos-xyz Mar 8, 2026
33cdd8e
fix: discard logs from balanceOf evm_call to match go-eth StaticCall …
panos-xyz Mar 8, 2026
a891dd0
refactor: minor efficiency improvements in token fee log handling
panos-xyz Mar 8, 2026
718415d
refactor: deduplicate MorphTx validation in consensus layer
panos-xyz Mar 8, 2026
c6f4c9e
style: fmt all
panos-xyz Mar 8, 2026
cf6a7c3
fix: rewrite TxMorph Compact codec using derive helper struct pattern
panos-xyz Mar 9, 2026
3411baf
chore: add local-test-hoodi scripts for Hoodi testnet sync
panos-xyz Mar 9, 2026
c5e488f
fix: read L1BlockInfo per-tx instead of per-block cache
panos-xyz Mar 9, 2026
7920f44
style: fmt all
panos-xyz Mar 9, 2026
4e6f225
fix: allow skipped L1 messages in block validation
panos-xyz Mar 10, 2026
4d3f66c
docs: fix stale comments, remove redundant annotations
panos-xyz Mar 10, 2026
18175ba
fix: set finalized_block_hash in FCU to prevent unbounded memory growth
panos-xyz Mar 11, 2026
8fc171e
fix: limit FCU tag fallback to historical sync
panos-xyz Mar 11, 2026
e29313a
fix: seed finalized tag in new_safe_l2_block for validator memory cle…
panos-xyz Mar 11, 2026
bce93b3
fix: use journal checkpoint/revert for EVM internal calls
panos-xyz Mar 11, 2026
42d4f20
refactor: remove should_compute_state_root override and export fetch_…
panos-xyz Mar 11, 2026
5c66d44
feat: add state-root-check CLI tool for MPT root comparison
panos-xyz Mar 11, 2026
aeb6400
chore: remove legacy-state-root flag and fix geth RPC URL default
panos-xyz Mar 11, 2026
3a06244
chore: add sync speed benchmark scripts
panos-xyz Mar 11, 2026
ce51d44
refactor: remove geth RPC cross-validation from sync path
panos-xyz Mar 11, 2026
f2995be
chore: add state-root-check wrapper scripts
panos-xyz Mar 11, 2026
9b0ad0b
fix: implement OnStateHook in MorphBlockExecutor for StateRootTask
panos-xyz Mar 12, 2026
dc86c45
fix: remove MorphTxRuntime and SLOAD/SSTORE overrides for revm 33.1.0
panos-xyz Mar 12, 2026
e4ec499
style: fmt all
panos-xyz Mar 12, 2026
7a911ee
chore: remove test scripts, benchmarks, and debug tooling for clean PR
panos-xyz Mar 12, 2026
919d85b
fix: atomic token transfer, txpool V1 gate, and effective gas price f…
panos-xyz Mar 12, 2026
8c2e641
refactor: extract checkpoint helpers to eliminate scattered checkpoin…
panos-xyz Mar 12, 2026
c2e73ce
fix: address code review findings (docs, logging target, post_fee_logs)
panos-xyz Mar 12, 2026
78c6a31
revert: remove redundant is_ok() guard in reimburse_caller_token_fee
panos-xyz Mar 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion bin/morph-reth/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ fn main() {
// Install signal handler for segmentation faults
sigsegv_handler::install();

// Enable backtraces by default
// Enable backtraces by default.
// SAFETY: Called at process startup before any other threads are spawned,
// so there are no concurrent readers of the environment.
if std::env::var_os("RUST_BACKTRACE").is_none() {
unsafe { std::env::set_var("RUST_BACKTRACE", "1") };
}
Expand Down
477 changes: 376 additions & 101 deletions crates/consensus/src/validation.rs

Large diffs are not rendered by default.

Loading
Loading