@leofcoin/chain 1.4.64 → 1.4.65

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.
@@ -8178,11 +8178,8 @@ class Chain extends Contract {
8178
8178
  this.#jail.push(validatorInfo.address);
8179
8179
  }
8180
8180
  async triggerSync() {
8181
- if (this.#chainSyncing)
8182
- return 'already syncing';
8183
8181
  const latest = await this.#getLatestBlock();
8184
- await this.syncChain(latest);
8185
- return 'synced';
8182
+ return this.syncChain(latest);
8186
8183
  }
8187
8184
  async syncChain(lastBlock) {
8188
8185
  if (!lastBlock)
@@ -8215,8 +8212,6 @@ class Chain extends Contract {
8215
8212
  return 'connectionless';
8216
8213
  try {
8217
8214
  await syncPromise(lastBlock);
8218
- if (lastBlock.index === this.#lastBlockInQue?.index || lastBlock.index > this.#lastBlockInQue?.index)
8219
- this.#lastBlockInQue = undefined;
8220
8215
  }
8221
8216
  catch (error) {
8222
8217
  console.log(error);
@@ -8227,10 +8222,12 @@ class Chain extends Contract {
8227
8222
  this.#syncErrorCount = 0;
8228
8223
  return 'errored';
8229
8224
  }
8225
+ if (lastBlock.index === this.#lastBlockInQue?.index)
8226
+ this.#lastBlockInQue = undefined;
8230
8227
  this.#syncErrorCount = 0;
8228
+ this.#chainSyncing = false;
8231
8229
  if (this.#lastBlockInQue)
8232
8230
  return this.syncChain(this.#lastBlockInQue);
8233
- this.#chainSyncing = false;
8234
8231
  return 'synced';
8235
8232
  }
8236
8233
  async #syncChain(lastBlock) {
package/exports/chain.js CHANGED
@@ -764,11 +764,8 @@ class Chain extends Contract {
764
764
  this.#jail.push(validatorInfo.address);
765
765
  }
766
766
  async triggerSync() {
767
- if (this.#chainSyncing)
768
- return 'already syncing';
769
767
  const latest = await this.#getLatestBlock();
770
- await this.syncChain(latest);
771
- return 'synced';
768
+ return this.syncChain(latest);
772
769
  }
773
770
  async syncChain(lastBlock) {
774
771
  if (!lastBlock)
@@ -801,8 +798,6 @@ class Chain extends Contract {
801
798
  return 'connectionless';
802
799
  try {
803
800
  await syncPromise(lastBlock);
804
- if (lastBlock.index === this.#lastBlockInQue?.index || lastBlock.index > this.#lastBlockInQue?.index)
805
- this.#lastBlockInQue = undefined;
806
801
  }
807
802
  catch (error) {
808
803
  console.log(error);
@@ -813,10 +808,12 @@ class Chain extends Contract {
813
808
  this.#syncErrorCount = 0;
814
809
  return 'errored';
815
810
  }
811
+ if (lastBlock.index === this.#lastBlockInQue?.index)
812
+ this.#lastBlockInQue = undefined;
816
813
  this.#syncErrorCount = 0;
814
+ this.#chainSyncing = false;
817
815
  if (this.#lastBlockInQue)
818
816
  return this.syncChain(this.#lastBlockInQue);
819
- this.#chainSyncing = false;
820
817
  return 'synced';
821
818
  }
822
819
  async #syncChain(lastBlock) {
@@ -30,7 +30,7 @@ export default class Chain extends Contract {
30
30
  hash: string;
31
31
  previousHash: string;
32
32
  }>;
33
- triggerSync(): Promise<"synced" | "already syncing">;
33
+ triggerSync(): Promise<chainSyncState>;
34
34
  syncChain(lastBlock: any): Promise<chainSyncState>;
35
35
  getAndPutBlock(hash: string): BlockMessage;
36
36
  resolveBlock(hash: any): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leofcoin/chain",
3
- "version": "1.4.64",
3
+ "version": "1.4.65",
4
4
  "description": "Official javascript implementation",
5
5
  "exports": {
6
6
  "./node": "./exports/node.js",