Skip to content

Commit

Permalink
removed unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
chakra-guy committed Jan 5, 2024
1 parent 0053bb2 commit b36e067
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions ethrpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1163,25 +1163,6 @@ func (s *EthRPCTestSuite) TestGetBlocksByRange() {
s.Require().Nil(err)
}

func TestThings(t *testing.T) {
from := 3274863
to := from + 100

rpc := New("https://eth.llamarpc.com")
blocks, err := rpc.GetBlocksByRange(from, to, true)
fmt.Printf("blocks %#v\n\n\n", blocks)
fmt.Printf("err %#v\n\n\n", err)

logs, err := rpc.EthGetLogs(FilterParams{
FromBlock: IntToHex(from),
ToBlock: IntToHex(to),
})
fmt.Printf("logs %#v\n\n\n", logs)
fmt.Printf("err %#v\n\n\n", err)

t.Fatal()
}

func TestEthRPCTestSuite(t *testing.T) {
suite.Run(t, new(EthRPCTestSuite))
}
Expand Down

0 comments on commit b36e067

Please sign in to comment.