Skip to content

Commit

Permalink
forkdiff update (#321)
Browse files Browse the repository at this point in the history
* forkdiff update

* update forkdiff version, rename ignore field to match forkdiff change
  • Loading branch information
protolambda authored May 23, 2024
1 parent 3fbae78 commit 966c435
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 1000 # make sure to fetch the old commit we diff against

- name: Build forkdiff
uses: "docker://protolambda/forkdiff:latest"
uses: "docker://protolambda/forkdiff:0.1.0"
with:
args: -repo=/github/workspace -fork=/github/workspace/fork.yaml -out=/github/workspace/index.html

Expand Down
23 changes: 18 additions & 5 deletions fork.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ footer: |
base:
name: go-ethereum
url: https://github.com/ethereum/go-ethereum
hash: c5ba367eb6232e3eddd7d6226bfd374449c63164 v1.13.15
hash: c5ba367eb6232e3eddd7d6226bfd374449c63164 # v1.13.15
fork:
name: op-geth
url: https://github.com/ethereum-optimism/op-geth
Expand Down Expand Up @@ -56,7 +56,7 @@ def:
globs:
- "core/vm/evm.go"
- "core/evm.go"
- "core/types/rollup_l1_cost.go"
- "core/types/rollup_cost.go"
- "core/state_processor.go"
- "core/state_prefetcher.go"
- title: Transaction processing
Expand Down Expand Up @@ -111,7 +111,7 @@ def:
description: |
Transaction queueing and inclusion needs to account for the L1 cost component.
globs:
- "core/txpool/*"
- "core/txpool/**/*"
- "core/txpool/legacypool/*"
- title: "Chain Configuration"
sub:
Expand Down Expand Up @@ -188,6 +188,10 @@ def:
description: Fix discv5 option to allow discv5 to be an active source for node-discovery.
globs:
- "p2p/server.go"
- title: Bootnodes
description: Discovery bootnode addresses.
globs:
- "params/bootnodes.go"
- title: Generated TOML config update
globs:
- "eth/ethconfig/gen_config.go"
Expand Down Expand Up @@ -222,7 +226,7 @@ def:
globs:
- "eth/tracers/api.go"
- title: "Daisy Chain tests"
globs:
ignore:
- "internal/ethapi/transaction_args_test.go"
- "ethclient/ethclient_test.go"
- "eth/tracers/api_test.go"
Expand Down Expand Up @@ -255,11 +259,20 @@ def:
# upstream PR: https://github.com/ethereum/go-ethereum/pull/28863/
globs:
- "accounts/usbwallet/hub.go"
- title: "Testing"
description: Additional or modified tests, not already captured by the above diff
ignore:
- "**/*_test.go"

# ignored globally, does not count towards line count
ignore:
- ".circleci/*"
- "*.sum"
- "go.mod"
- "fork.yaml"
- ".github/*"
- "Makefile"
- ".golangci.yml"
- ".github/**"
- "**/*.gob" # data asset, not code
- "core/vm/testdata/precompiles/p256Verify.json" # data asset, not code
- "eth/tracers/internal/tracetest/testdata/**/*.json"

0 comments on commit 966c435

Please sign in to comment.