@leofcoin/chain 1.7.43 → 1.7.44

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.
@@ -4415,8 +4415,8 @@ class Chain extends VersionControl {
4415
4415
  }
4416
4416
  async #invalidTransaction(hash) {
4417
4417
  hash = new TextDecoder().decode(hash);
4418
+ console.log(`removing invalid transaction: ${hash}`);
4418
4419
  await globalThis.transactionPoolStore.delete(hash);
4419
- console.log(`removed invalid transaction: ${hash}`);
4420
4420
  }
4421
4421
  async #validatorTimeout(validatorInfo) {
4422
4422
  setTimeout(() => {
package/exports/chain.js CHANGED
@@ -1516,8 +1516,8 @@ class Chain extends VersionControl {
1516
1516
  }
1517
1517
  async #invalidTransaction(hash) {
1518
1518
  hash = new TextDecoder().decode(hash);
1519
+ console.log(`removing invalid transaction: ${hash}`);
1519
1520
  await globalThis.transactionPoolStore.delete(hash);
1520
- console.log(`removed invalid transaction: ${hash}`);
1521
1521
  }
1522
1522
  async #validatorTimeout(validatorInfo) {
1523
1523
  setTimeout(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leofcoin/chain",
3
- "version": "1.7.43",
3
+ "version": "1.7.44",
4
4
  "description": "Official javascript implementation",
5
5
  "private": false,
6
6
  "exports": {