Skip to content

Commit

Permalink
ethrpc: unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
marino39 committed Oct 23, 2024
1 parent 9a0b412 commit 21e8d47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ethrpc/ethrpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ func TestRaw(t *testing.T) {
}
}

// todo: uncommented when those call are available on node-gateway
// todo: uncomment when those call are available on node-gateway
/*func TestDebugTraceBlockByNumber(t *testing.T) {
p, err := ethrpc.NewProvider("...")
p, err := ethrpc.NewProvider("https://nodes.sequence.app/polygon")
require.NoError(t, err)
ctx := context.Background()
Expand All @@ -238,7 +238,7 @@ func TestRaw(t *testing.T) {
}
func TestDebugTraceBlockByHash(t *testing.T) {
p, err := ethrpc.NewProvider("...")
p, err := ethrpc.NewProvider("https://nodes.sequence.app/polygon")
require.NoError(t, err)
ctx := context.Background()
Expand All @@ -249,7 +249,7 @@ func TestDebugTraceBlockByHash(t *testing.T) {
}
func TestDebugTraceTransaction(t *testing.T) {
p, err := ethrpc.NewProvider("...")
p, err := ethrpc.NewProvider("https://nodes.sequence.app/polygon")
require.NoError(t, err)
ctx := context.Background()
Expand Down

0 comments on commit 21e8d47

Please sign in to comment.