-
Notifications
You must be signed in to change notification settings - Fork 263
feat: Subscribe to forced inclusion ns events #3146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 15 commits
092cde0
a878f8d
f20b7ae
de64d82
239157f
9df4ff9
d245558
2d4cd71
d3bc9ed
e918607
175c904
aca762f
20bb79d
c22f38e
6ffc4be
214a784
eb65f0f
53c991f
a56fa63
c31af08
6552a82
86359c3
2614471
29b3de3
bd3ccd1
8bb221b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,10 @@ module github.com/evstack/ev-node/apps/evm | |
|
|
||
| go 1.25.6 | ||
|
|
||
| //replace ( | ||
| // github.com/evstack/ev-node => ../../ | ||
| // github.com/evstack/ev-node/execution/evm => ../../execution/evm | ||
| //) | ||
| replace ( | ||
| github.com/evstack/ev-node => ../../ | ||
| github.com/evstack/ev-node/execution/evm => ../../execution/evm | ||
| ) | ||
|
Comment on lines
+5
to
+8
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Search for release scripts or documentation about handling replace directives
# Check for release/build scripts
fd -t f -e sh -e bash -e mk 'release|build|publish' --exec echo "File: {}" \; --exec head -20 {}
# Check for documentation about replace directives or release process
rg -n -C3 'replace.*directive|local.*replace|release.*process' --glob '*.md' --glob 'Makefile'
# Check if other go.mod files in the repo have similar patterns
fd -t f 'go.mod' --exec echo "=== {} ===" \; --exec grep -A5 '^replace' {}Repository: evstack/ev-node Length of output: 4536 🏁 Script executed: # Get the specific release process section from RELEASE.md to understand context better
sed -n '180,210p' RELEASE.mdRepository: evstack/ev-node Length of output: 879 🏁 Script executed: # Check if RELEASE.md specifies timing for replace directive removal
sed -n '130,190p' RELEASE.mdRepository: evstack/ev-node Length of output: 2087 Remove local replace directives from go.mod files before rc.5 release. Per RELEASE.md (lines 186, 404, 417), removing all These should not be present in rc.5 release artifacts, as they reference local filesystem paths that won't exist for consumers. Update the require block to use the published versions instead, following the documented release process order (core → root ev-node → execution/evm → apps/evm). 🤖 Prompt for AI Agents |
||
|
|
||
| require ( | ||
| github.com/ethereum/go-ethereum v1.17.1 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.