@drift-labs/sdk 2.48.0-beta.3 → 2.48.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/lib/userMap/userStatsMap.js +0 -1
- package/package.json +1 -1
- package/src/userMap/userStatsMap.ts +0 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.48.0-beta.
|
|
1
|
+
2.48.0-beta.4
|
|
@@ -152,7 +152,6 @@ class UserStatsMap {
|
|
|
152
152
|
* You may want to get this list from UserMap in order to filter out idle users
|
|
153
153
|
*/
|
|
154
154
|
async sync(authorities) {
|
|
155
|
-
console.log(`USER MAP SIYCING AUTHS: ${authorities.length}`);
|
|
156
155
|
await Promise.all(authorities.map((authority) => this.addUserStat(authority, undefined, true)));
|
|
157
156
|
await this.bulkAccountLoader.load();
|
|
158
157
|
}
|
package/package.json
CHANGED
|
@@ -201,7 +201,6 @@ export class UserStatsMap {
|
|
|
201
201
|
* You may want to get this list from UserMap in order to filter out idle users
|
|
202
202
|
*/
|
|
203
203
|
public async sync(authorities: PublicKey[]) {
|
|
204
|
-
console.log(`USER MAP SIYCING AUTHS: ${authorities.length}`);
|
|
205
204
|
await Promise.all(
|
|
206
205
|
authorities.map((authority) =>
|
|
207
206
|
this.addUserStat(authority, undefined, true)
|