@xyo-network/xl1-protocol-sdk 1.22.0 → 1.22.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.
@@ -3888,10 +3888,12 @@ var SimpleBlockValidationViewer = class extends AbstractCreatableProvider {
3888
3888
  }
3889
3889
  return await Promise.all(uncles[0].map(async (block) => {
3890
3890
  const errors = await this.params.state(
3891
- this.context,
3892
- block,
3893
- chainIdAtBlockNumber,
3894
- { accountBalance: this._accountBalanceViewer }
3891
+ {
3892
+ ...this.context,
3893
+ chainIdAtBlockNumber,
3894
+ accountBalance: this._accountBalanceViewer
3895
+ },
3896
+ block
3895
3897
  );
3896
3898
  return errors.length === 0 ? block : errors;
3897
3899
  }));