Skip to content

Commit

Permalink
version check bug
Browse files Browse the repository at this point in the history
  • Loading branch information
wanwiset25 committed Jun 27, 2024
1 parent 00759e4 commit db05951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func supportsEth63(version int) bool {
switch {
case version < 63:
return false
case version > 63:
case version >= 63:
return true
default:
return false
Expand Down

0 comments on commit db05951

Please sign in to comment.