Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Removed underscore from the JsonRpcBatchProvider name (ethers-io#62, e…
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo authored and pull[bot] committed Jun 4, 2021
1 parent 5cad8f8 commit d80645d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/providers/src.ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { FallbackProvider } from "./fallback-provider";
import { IpcProvider } from "./ipc-provider";
import { InfuraProvider, InfuraWebSocketProvider } from "./infura-provider";
import { JsonRpcProvider, JsonRpcSigner } from "./json-rpc-provider";
import { JsonRpcBatchProvider } from "./json-rpc-batch-provider";
import { NodesmithProvider } from "./nodesmith-provider";
import { PocketProvider } from "./pocket-provider";
import { StaticJsonRpcProvider, UrlJsonRpcProvider } from "./url-json-rpc-provider";
Expand Down Expand Up @@ -111,6 +112,7 @@ export {
InfuraProvider,
InfuraWebSocketProvider,
JsonRpcProvider,
JsonRpcBatchProvider,
NodesmithProvider,
PocketProvider,
StaticJsonRpcProvider,
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/src.ts/json-rpc-batch-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { JsonRpcProvider } from "./json-rpc-provider";

// Experimental

export class _JsonRpcBatchProvider extends JsonRpcProvider {
export class JsonRpcBatchProvider extends JsonRpcProvider {
_pendingBatchAggregator: NodeJS.Timer;
_pendingBatch: Array<{
request: { method: string, params: Array<any>, id: number, jsonrpc: "2.0" },
Expand Down

0 comments on commit d80645d

Please sign in to comment.