From 94542e8f814dabc54cf7661a87d09a13faa4d082 Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Tue, 22 Oct 2024 19:27:51 -0400 Subject: [PATCH] clean up --- node/config.go | 6 +++++- node/node.go | 7 +++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/node/config.go b/node/config.go index 527db592e..6a4d690f9 100644 --- a/node/config.go +++ b/node/config.go @@ -3,7 +3,7 @@ package node import ( "errors" "fmt" - "github.com/Layr-Labs/eigensdk-go/crypto/bls" + "os" "strconv" "strings" @@ -14,8 +14,12 @@ import ( "github.com/Layr-Labs/eigenda/core" "github.com/Layr-Labs/eigenda/encoding/kzg" "github.com/Layr-Labs/eigenda/node/flags" + + "github.com/Layr-Labs/eigensdk-go/crypto/bls" + "github.com/ethereum/go-ethereum/accounts/keystore" "github.com/ethereum/go-ethereum/crypto" + "github.com/urfave/cli" ) diff --git a/node/node.go b/node/node.go index 4c432a2da..979e13aa6 100644 --- a/node/node.go +++ b/node/node.go @@ -6,7 +6,6 @@ import ( "encoding/json" "errors" "fmt" - "google.golang.org/grpc/credentials" "io" "math" "math/big" @@ -20,12 +19,16 @@ import ( "github.com/Layr-Labs/eigenda/common/pubip" "github.com/Layr-Labs/eigenda/encoding/kzg/verifier" + + "github.com/prometheus/client_golang/prometheus" + gethcommon "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/prometheus/client_golang/prometheus" "github.com/wealdtech/go-merkletree/v2" "github.com/wealdtech/go-merkletree/v2/keccak256" + "google.golang.org/grpc" + "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" "google.golang.org/protobuf/proto"