Skip to content
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

cmd/devp2p/internal/ethtest: update tests for eth/67 #25306

Merged
merged 7 commits into from
Aug 2, 2022
Prev Previous commit
Next Next commit
cmd/devp2p/internal/ethtest: allow negotiating eth/67
fjl committed Jul 15, 2022
commit be7884a4559b047ff85f17dcdfab5743922045a8
4 changes: 2 additions & 2 deletions cmd/devp2p/internal/ethtest/helpers.go
Original file line number Diff line number Diff line change
@@ -61,10 +61,10 @@ func (s *Suite) dial() (*Conn, error) {
}
// set default p2p capabilities
conn.caps = []p2p.Cap{
{Name: "eth", Version: 65},
{Name: "eth", Version: 66},
{Name: "eth", Version: 67},
}
conn.ourHighestProtoVersion = 66
conn.ourHighestProtoVersion = 67
return &conn, nil
}