From e1eab09be972fe66af2e69e90ff10d597873dcb9 Mon Sep 17 00:00:00 2001 From: Andrew Ashikhmin <34320705+yperbasis@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:32:49 +0200 Subject: [PATCH] Fix compilation (#12171) --- consensus/misc/eip7002.go | 4 +++- consensus/misc/eip7251.go | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/consensus/misc/eip7002.go b/consensus/misc/eip7002.go index e3253777cf5..1d6d9a4c6bd 100644 --- a/consensus/misc/eip7002.go +++ b/consensus/misc/eip7002.go @@ -3,8 +3,10 @@ package misc import ( "encoding/binary" + "github.com/ledgerwatch/log/v3" + "github.com/ledgerwatch/erigon-lib/common" - "github.com/ledgerwatch/erigon-lib/log/v3" + "github.com/ledgerwatch/erigon/consensus" "github.com/ledgerwatch/erigon/core/types" "github.com/ledgerwatch/erigon/params" diff --git a/consensus/misc/eip7251.go b/consensus/misc/eip7251.go index 8f16ab28251..fe43f51c206 100644 --- a/consensus/misc/eip7251.go +++ b/consensus/misc/eip7251.go @@ -1,8 +1,10 @@ package misc import ( + "github.com/ledgerwatch/log/v3" + "github.com/ledgerwatch/erigon-lib/common" - "github.com/ledgerwatch/erigon-lib/log/v3" + "github.com/ledgerwatch/erigon/consensus" "github.com/ledgerwatch/erigon/core/types" "github.com/ledgerwatch/erigon/params"