Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
datluongductuan committed Mar 13, 2024
1 parent 7aa34a8 commit ff26435
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pkg/mev/bundle_sender_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,27 @@ import (
"crypto/ecdsa"
"crypto/rand"
"encoding/json"
"fmt"
"math/big"
"net/http"
"testing"

"github.com/KyberNetwork/tradinglib/pkg/convert"
"github.com/KyberNetwork/tradinglib/pkg/mev"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/KyberNetwork/tradinglib/pkg/convert"
"github.com/KyberNetwork/tradinglib/pkg/mev"
)

func TestSendBundle(t *testing.T) {
t.Skip()
// Generate a new private key
privateKey, err := ecdsa.GenerateKey(crypto.S256(), rand.Reader)
if err != nil {
fmt.Println("Failed to generate private key:", err)
t.Error("Failed to generate private key:", err)
return
}
var (
Expand Down

0 comments on commit ff26435

Please sign in to comment.