Skip to content

Commit 6ebc70c

Browse files
committed
Remove experimental log from mass call client and add as doc comment
1 parent eac79f1 commit 6ebc70c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/core/massCallClient.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ const createFibonnaciSleeper = () => {
5252
};
5353
};
5454

55+
/**
56+
* Note: MassCallClient is experimental and may not work as expected.
57+
* Creates a mass call client based on an existing ClientInterface.
58+
*
59+
* @param client ClientInterface
60+
* @param options Object
61+
* @returns MassClientInterface
62+
*/
5563
export function createMassCallClient(
5664
client: ClientInterface,
5765
options: {
@@ -77,8 +85,6 @@ export function createMassCallClient(
7785
let increment = options.initialSpawn ?? 1;
7886
const sleeper = createFibonnaciSleeper();
7987

80-
console.log('⚠️ MassCallClient is experimental and may not work as expected.');
81-
8288
const execute = async () => {
8389
failedPromises = [];
8490
let batch = [];

0 commit comments

Comments
 (0)