Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.

Commit 4e68587

Browse files
committed
Bump libevm dependency to current main
At commit ava-labs/libevm@19ec675
1 parent fe9ce00 commit 4e68587

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

accounts/abi/bind/bind_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2179,7 +2179,7 @@ func golangBindings(t *testing.T, overload bool) {
21792179
if out, err := replacer.CombinedOutput(); err != nil {
21802180
t.Fatalf("failed to replace binding test dependency to current source tree: %v\n%s", err, out)
21812181
}
2182-
replacer = exec.Command(gocmd, "mod", "edit", "-x", "-require", "github.com/ava-labs/[email protected]", "-replace", "github.com/ava-labs/libevm=github.com/ava-labs/[email protected]20250212124953-9c7285a21b71")
2182+
replacer = exec.Command(gocmd, "mod", "edit", "-x", "-require", "github.com/ava-labs/[email protected]", "-replace", "github.com/ava-labs/libevm=github.com/ava-labs/[email protected]20250213164614-19ec675e01c4")
21832183
replacer.Dir = pkg
21842184
if out, err := replacer.CombinedOutput(); err != nil {
21852185
t.Fatalf("failed to replace binding test dependency to current source tree: %v\n%s", err, out)

core/types/header_ext.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ func (h *HeaderExtra) DecodeRLP(eth *ethtypes.Header, stream *rlp.Stream) error
2323
panic("not implemented")
2424
}
2525

26-
func (h *HeaderExtra) MarshalJSON(eth *ethtypes.Header) ([]byte, error) {
26+
func (h *HeaderExtra) EncodeJSON(eth *ethtypes.Header) ([]byte, error) {
2727
panic("not implemented")
2828
}
2929

30-
func (h *HeaderExtra) UnmarshalJSON(eth *ethtypes.Header, input []byte) error {
30+
func (h *HeaderExtra) DecodeJSON(eth *ethtypes.Header, input []byte) error {
3131
panic("not implemented")
3232
}
3333

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,4 @@ require (
136136
rsc.io/tmplfunc v0.0.3 // indirect
137137
)
138138

139-
replace github.com/ava-labs/libevm => github.com/ava-labs/libevm v0.0.0-20250212124953-9c7285a21b71
139+
replace github.com/ava-labs/libevm => github.com/ava-labs/libevm v0.0.0-20250213164614-19ec675e01c4

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax
5858
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
5959
github.com/ava-labs/avalanchego v1.12.1-0.20250107220127-32f58b4fa9c8 h1:qN3MOBHB//Ynhgt5Vys3iVe42Sr0EWSeN18VL3ecXzE=
6060
github.com/ava-labs/avalanchego v1.12.1-0.20250107220127-32f58b4fa9c8/go.mod h1:2B7+E5neLvkOr2zursGhebjU26d4AfB7RazPxBs8hHg=
61-
github.com/ava-labs/libevm v0.0.0-20250212124953-9c7285a21b71 h1:C8qlqwg/QPnfJCh7ACTFkfXrMh5Q98revSv0R+PRG88=
62-
github.com/ava-labs/libevm v0.0.0-20250212124953-9c7285a21b71/go.mod h1:xi9AcwLOv3gUYYSuRYxXKVmLMFTSM4g0m4cpvC5X8DU=
61+
github.com/ava-labs/libevm v0.0.0-20250213164614-19ec675e01c4 h1:nk6q9a1XoLp8Gnce8kEl3PpE6Xmpgc3QJKFnyt11M1g=
62+
github.com/ava-labs/libevm v0.0.0-20250213164614-19ec675e01c4/go.mod h1:xi9AcwLOv3gUYYSuRYxXKVmLMFTSM4g0m4cpvC5X8DU=
6363
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g=
6464
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
6565
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=

scripts/tests.e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ git checkout -B "test-${AVALANCHE_VERSION}" "${AVALANCHE_VERSION}"
4545

4646
echo "updating coreth dependency to point to ${CORETH_PATH}"
4747
go mod edit -replace "github.com/ava-labs/coreth=${CORETH_PATH}"
48-
go mod edit -replace "github.com/ava-labs/libevm=github.com/ava-labs/[email protected]20250212124953-9c7285a21b71"
48+
go mod edit -replace "github.com/ava-labs/libevm=github.com/ava-labs/[email protected]20250213164614-19ec675e01c4"
4949
go mod tidy
5050

5151
echo "building avalanchego"

0 commit comments

Comments
 (0)