@leofcoin/chain 1.6.14 → 1.6.15
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/exports/browser/chain.js +2 -0
- package/exports/chain.js +2 -0
- package/package.json +1 -1
package/exports/browser/chain.js
CHANGED
|
@@ -4437,6 +4437,8 @@ class State extends Contract {
|
|
|
4437
4437
|
await globalThis.accountsStore.clear();
|
|
4438
4438
|
await globalThis.chainStore.clear();
|
|
4439
4439
|
await globalThis.blockStore.clear();
|
|
4440
|
+
await globalThis.transactionStore.clear();
|
|
4441
|
+
await globalThis.stateStore.clear();
|
|
4440
4442
|
await globalThis.transactionPoolStore.clear();
|
|
4441
4443
|
}
|
|
4442
4444
|
#chainStateHandler;
|
package/exports/chain.js
CHANGED
|
@@ -804,6 +804,8 @@ class State extends Contract {
|
|
|
804
804
|
await globalThis.accountsStore.clear();
|
|
805
805
|
await globalThis.chainStore.clear();
|
|
806
806
|
await globalThis.blockStore.clear();
|
|
807
|
+
await globalThis.transactionStore.clear();
|
|
808
|
+
await globalThis.stateStore.clear();
|
|
807
809
|
await globalThis.transactionPoolStore.clear();
|
|
808
810
|
}
|
|
809
811
|
#chainStateHandler;
|