@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.
- package/dist/neutral/index.mjs +6 -4
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/simple/blockInvalidation/SimpleBlockInvalidationViewer.ts +3 -3
- package/src/simple/blockValidation/SimpleBlockValidationViewer.ts +3 -3
- package/src/simple/transactionInvalidation/SimpleTransactionInvalidationViewer.ts +3 -3
package/dist/neutral/index.mjs
CHANGED
|
@@ -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
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
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
|
}));
|