From 384403c1017f9ddd7480a3bdb95ef8919fdfc4f3 Mon Sep 17 00:00:00 2001 From: TechVest Date: Mon, 10 Mar 2025 21:47:35 +0800 Subject: [PATCH] refactor: replace golang.org/x/exp with stdlib Signed-off-by: TechVest --- node/core/sequencers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/core/sequencers.go b/node/core/sequencers.go index 68f253a64..3f4ab7f64 100644 --- a/node/core/sequencers.go +++ b/node/core/sequencers.go @@ -5,6 +5,7 @@ import ( "errors" "fmt" "math/big" + "slices" "time" "github.com/morph-l2/go-ethereum/common" @@ -13,7 +14,6 @@ import ( "github.com/tendermint/tendermint/blssignatures" "github.com/tendermint/tendermint/crypto/ed25519" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - "golang.org/x/exp/slices" ) const tmKeySize = ed25519.PubKeySize