@solana/web3.js 1.37.0 → 1.37.1

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.
@@ -7418,12 +7418,6 @@ class Connection {
7418
7418
 
7419
7419
  if ('data' in res.error) {
7420
7420
  logs = res.error.data.logs;
7421
-
7422
- if (logs && Array.isArray(logs)) {
7423
- const traceIndent = '\n ';
7424
- const logTrace = traceIndent + logs.join(traceIndent);
7425
- console.error(res.error.message, logTrace);
7426
- }
7427
7421
  }
7428
7422
 
7429
7423
  throw new SendTransactionError('failed to send transaction: ' + res.error.message, logs);