@solana/web3.js 1.47.1 → 1.47.2

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.
@@ -6528,9 +6528,7 @@ class Connection {
6528
6528
 
6529
6529
 
6530
6530
  async getRecentPerformanceSamples(limit) {
6531
- const args = this._buildArgs(limit ? [limit] : []);
6532
-
6533
- const unsafeRes = await this._rpcRequest('getRecentPerformanceSamples', args);
6531
+ const unsafeRes = await this._rpcRequest('getRecentPerformanceSamples', limit ? [limit] : []);
6534
6532
  const res = create(unsafeRes, GetRecentPerformanceSamplesRpcResult);
6535
6533
 
6536
6534
  if ('error' in res) {