@xyo-network/xl1-protocol-sdk 1.26.15 → 1.26.17

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.
@@ -4687,7 +4687,7 @@ var SimpleMempoolRunner = class extends AbstractCreatableProvider {
4687
4687
  const validated = isSignedHydratedBlockWithHashMeta(r);
4688
4688
  if (!validated) {
4689
4689
  this.logger?.info(`Pruning block ${bundles[remainingBlockMap[i]]._hash} during block validation`);
4690
- this.logger?.info(` - validation result: ${JSON.stringify(r, null, 2)}`);
4690
+ this.logger?.info(` - validation result: ${r.at(0)?.message}`);
4691
4691
  }
4692
4692
  valid[remainingBlockMap[i]] = validated;
4693
4693
  }
@@ -4747,7 +4747,7 @@ var SimpleMempoolRunner = class extends AbstractCreatableProvider {
4747
4747
  const validated = isSignedHydratedTransactionWithHashMeta(r);
4748
4748
  if (!validated) {
4749
4749
  this.logger?.info(`Pruning transaction ${bundles[remainingTransactionMap[i]]._hash} during transaction validation`);
4750
- this.logger?.info(` - validation result: ${JSON.stringify(r, null, 2)}`);
4750
+ this.logger?.info(` - validation result: ${r.at(0)?.message}`);
4751
4751
  }
4752
4752
  valid[remainingTransactionMap[i]] = validated;
4753
4753
  }