Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur committed Jul 23, 2024
1 parent c1a60d0 commit 3cdac1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion signerv2/kms_signer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package signerv2_test
import (
"context"
"fmt"
"log/slog"
"math/big"
"os"
"testing"
Expand Down Expand Up @@ -95,7 +96,7 @@ func TestSendTransaction(t *testing.T) {
err = rpcClient.CallContext(context.Background(), nil, "anvil_setBalance", keyAddr, 2_000_000_000_000_000_000)
assert.Nil(t, err)

logger := &logging.SLogger{}
logger := logging.NewTextSLogger(os.Stdout, &logging.SLoggerOptions{Level: slog.LevelDebug})
ethClient, err := ethclient.Dial(anvilEndpoint)
assert.Nil(t, err)
chainID, err := ethClient.ChainID(context.Background())
Expand Down

0 comments on commit 3cdac1a

Please sign in to comment.