From 3af07c669d8332392169a60fbbbfc4fa9aeb52d6 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 15 Feb 2024 11:47:35 +0100 Subject: [PATCH] Update list.go --- core/txpool/legacypool/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/txpool/legacypool/list.go b/core/txpool/legacypool/list.go index ba2c829c40..c6f4d3767a 100644 --- a/core/txpool/legacypool/list.go +++ b/core/txpool/legacypool/list.go @@ -20,7 +20,6 @@ import ( "container/heap" "math" "math/big" - "slices" "sort" "sync" "sync/atomic" @@ -28,6 +27,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" + "golang.org/x/exp/slices" ) // nonceHeap is a heap.Interface implementation over 64bit unsigned integers for