Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions apps/evm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ go 1.25.8

require (
github.com/ethereum/go-ethereum v1.17.4
github.com/evstack/ev-node v1.2.1
github.com/evstack/ev-node v1.2.2
github.com/evstack/ev-node/core v1.1.0
github.com/evstack/ev-node/execution/evm v1.1.0
github.com/evstack/ev-node/execution/evm v1.1.1
Comment on lines +7 to +9

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/usr/bin/env bash
set -euo pipefail

cd apps/evm
go list -m -f '{{.Path}} {{.Version}}' \
  github.com/evstack/ev-node \
  github.com/evstack/ev-node/core \
  github.com/evstack/ev-node/execution/evm
go test ./...

Repository: evstack/ev-node

Length of output: 1006


Fix the failing apps/evm/server test before merging.

The mixed ev-node, core, and execution/evm versions compile together, but go test ./... still fails in apps/evm/server with TestForceInclusionServer_ProxyToExecutionRPC: the proxy request returns a non-nil JSON-RPC error.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/evm/go.mod` around lines 7 - 9, Align the ev-node, core, and
execution/evm dependency versions in go.mod so the apps/evm/server proxy path
uses compatible RPC behavior. Then run go test ./... and verify
TestForceInclusionServer_ProxyToExecutionRPC returns a successful response
without a JSON-RPC error.

github.com/ipfs/go-datastore v0.9.1
github.com/rs/zerolog v1.35.1
github.com/spf13/cobra v1.10.2
Expand Down
8 changes: 4 additions & 4 deletions apps/evm/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab h1:rvv6MJ
github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab/go.mod h1:IuLm4IsPipXKF7CW5Lzf68PIbZ5yl7FFd74l/E0o9A8=
github.com/ethereum/go-ethereum v1.17.4 h1:uA4q+qiLp7QImBsjdRbINu8iX6OEVmj4DPc5/E5Fsxc=
github.com/ethereum/go-ethereum v1.17.4/go.mod h1:qMdgwqqRAen+aT8P7KKQKi0Qt6RzG4cfejVAbCpJgqA=
github.com/evstack/ev-node v1.2.1 h1:67u22AZFbFDkv/N6hyzx7eGtoS1RD7pOj4AsQqA4+pc=
github.com/evstack/ev-node v1.2.1/go.mod h1:OG0eQEvqB6w0p70L9wIVboLDPiSRfr359dd5eKKJslg=
github.com/evstack/ev-node v1.2.2 h1:WCjqjVmtmgl7ICqr5Y4l1zHA2LT6qvaWTzDCkqc6m58=
github.com/evstack/ev-node v1.2.2/go.mod h1:b2gsYIaYZES/rKTnMxcpvTVNwCZvbDnhf9iFO1haWas=
github.com/evstack/ev-node/core v1.1.0 h1:Sa7uU5yuNF7YUyLBHPThD6Jt8/jacM1epRLATrdvKRE=
github.com/evstack/ev-node/core v1.1.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
github.com/evstack/ev-node/execution/evm v1.1.0 h1:YKJktOwCI1mlyAZEJvOw8N6I9VUo/3W9yi7mtOb0ElE=
github.com/evstack/ev-node/execution/evm v1.1.0/go.mod h1:3uG4HGdRjI1fqI4c9tvMOljfWFQ6w1rqNDRu+JEmgTo=
github.com/evstack/ev-node/execution/evm v1.1.1 h1:erBo0do2Ipw/kyHeoHdjkTpNT6/dGgbxyZZsZlCw0r0=
github.com/evstack/ev-node/execution/evm v1.1.1/go.mod h1:HqDZ41tn1LiG35F3QrDF7f73Ge3zZiJOXFMzPeW0+so=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
Expand Down
2 changes: 1 addition & 1 deletion apps/testapp/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/evstack/ev-node/apps/testapp
go 1.25.8

require (
github.com/evstack/ev-node v1.2.1
github.com/evstack/ev-node v1.2.2
github.com/evstack/ev-node/core v1.1.0
github.com/ipfs/go-datastore v0.9.1
github.com/rs/zerolog v1.35.1
Expand Down
4 changes: 2 additions & 2 deletions apps/testapp/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ github.com/envoyproxy/go-control-plane/envoy v1.37.0/go.mod h1:DReE9MMrmecPy+YvQ
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/envoyproxy/protoc-gen-validate v1.3.3 h1:MVQghNeW+LZcmXe7SY1V36Z+WFMDjpqGAGacLe2T0ds=
github.com/envoyproxy/protoc-gen-validate v1.3.3/go.mod h1:TsndJ/ngyIdQRhMcVVGDDHINPLWB7C82oDArY51KfB0=
github.com/evstack/ev-node v1.2.1 h1:67u22AZFbFDkv/N6hyzx7eGtoS1RD7pOj4AsQqA4+pc=
github.com/evstack/ev-node v1.2.1/go.mod h1:OG0eQEvqB6w0p70L9wIVboLDPiSRfr359dd5eKKJslg=
github.com/evstack/ev-node v1.2.2 h1:WCjqjVmtmgl7ICqr5Y4l1zHA2LT6qvaWTzDCkqc6m58=
github.com/evstack/ev-node v1.2.2/go.mod h1:b2gsYIaYZES/rKTnMxcpvTVNwCZvbDnhf9iFO1haWas=
github.com/evstack/ev-node/core v1.1.0 h1:Sa7uU5yuNF7YUyLBHPThD6Jt8/jacM1epRLATrdvKRE=
github.com/evstack/ev-node/core v1.1.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
Expand Down
Loading