Skip to content

Commit d311ae1

Browse files
committed
Bump libevm dependency to current main
At commit ava-labs/libevm@b2c38ce
1 parent ab19679 commit d311ae1

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
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]20250210135835-d3f6a5e75e05")
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]20250212113828-b2c38ce397a2")
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/state_account.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ var (
4747
type isMultiCoin bool
4848

4949
var (
50-
extras = ethtypes.RegisterExtras[ethtypes.NOOPHeaderHooks, *ethtypes.NOOPHeaderHooks, isMultiCoin]()
50+
extras = ethtypes.RegisterExtras[
51+
ethtypes.NOOPHeaderHooks, *ethtypes.NOOPHeaderHooks,
52+
ethtypes.NOOPBodyHooks, *ethtypes.NOOPBodyHooks,
53+
isMultiCoin,
54+
]()
5155
IsMultiCoinPayloads = extras.StateAccount
5256
)
5357

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-20250210135835-d3f6a5e75e05
139+
replace github.com/ava-labs/libevm => github.com/ava-labs/libevm v0.0.0-20250212113828-b2c38ce397a2

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-20250210135835-d3f6a5e75e05 h1:LzpeCE04Opu8tepYoA1xxdWCYZI7J0etGcBAzABt6j0=
62-
github.com/ava-labs/libevm v0.0.0-20250210135835-d3f6a5e75e05/go.mod h1:M8TCw2g1D5GBB7hu7g1F4aot5bRHGSxnBawNVmHE9Z0=
61+
github.com/ava-labs/libevm v0.0.0-20250212113828-b2c38ce397a2 h1:OVyja+Wdn7VUWpPAi6+DND7rMSqk6LH+qHKxEs6JX00=
62+
github.com/ava-labs/libevm v0.0.0-20250212113828-b2c38ce397a2/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]20250210135835-d3f6a5e75e05"
48+
go mod edit -replace "github.com/ava-labs/libevm=github.com/ava-labs/[email protected]20250212113828-b2c38ce397a2"
4949
go mod tidy
5050

5151
echo "building avalanchego"

0 commit comments

Comments
 (0)