(t *testing.T)
| 767 | } |
| 768 | |
| 769 | func TestBatchedJSONRPCCalls(t *testing.T) { |
| 770 | ctx, cancel := context.WithCancel(context.Background()) |
| 771 | defer cancel() |
| 772 | |
| 773 | _, conf := NodeSuite(t) |
| 774 | c := getHTTPClient(t, conf) |
| 775 | testBatchedJSONRPCCalls(ctx, t, c) |
| 776 | } |
| 777 | |
| 778 | func testBatchedJSONRPCCalls(ctx context.Context, t *testing.T, c *rpchttp.HTTP) { |
| 779 | k1, v1, tx1 := MakeTxKV() |
nothing calls this directly
no test coverage detected
searching dependent graphs…