@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.
package/lib/index.cjs.js CHANGED
@@ -6924,12 +6924,6 @@ class Connection {
6924
6924
 
6925
6925
  if ('data' in res.error) {
6926
6926
  logs = res.error.data.logs;
6927
-
6928
- if (logs && Array.isArray(logs)) {
6929
- const traceIndent = '\n ';
6930
- const logTrace = traceIndent + logs.join(traceIndent);
6931
- console.error(res.error.message, logTrace);
6932
- }
6933
6927
  }
6934
6928
 
6935
6929
  throw new SendTransactionError('failed to send transaction: ' + res.error.message, logs);