@leofcoin/chain 1.5.27 → 1.5.28

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.
@@ -1421,7 +1421,7 @@ class State extends Contract {
1421
1421
  async syncChain(lastBlock) {
1422
1422
  if (!this.shouldSync)
1423
1423
  return;
1424
- this.#syncState;
1424
+ this.#syncState = 'syncing';
1425
1425
  this.#chainSyncing = true;
1426
1426
  try {
1427
1427
  if (this.jobber.busy && this.jobber.destroy) {
package/exports/chain.js CHANGED
@@ -857,7 +857,7 @@ class State extends Contract {
857
857
  async syncChain(lastBlock) {
858
858
  if (!this.shouldSync)
859
859
  return;
860
- this.#syncState;
860
+ this.#syncState = 'syncing';
861
861
  this.#chainSyncing = true;
862
862
  try {
863
863
  if (this.jobber.busy && this.jobber.destroy) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leofcoin/chain",
3
- "version": "1.5.27",
3
+ "version": "1.5.28",
4
4
  "description": "Official javascript implementation",
5
5
  "exports": {
6
6
  "./node": {