@leofcoin/chain 1.7.21 → 1.7.22

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.
@@ -5201,9 +5201,9 @@ class Chain extends VersionControl {
5201
5201
  normalTransactions.push(transaction);
5202
5202
  }
5203
5203
  for (const transaction of priorityransactions.sort((a, b) => a.decoded.nonce - b.decoded.nonce)) {
5204
- await this.#handleTransaction(transaction, [], block);
5204
+ await this.#handleTransaction(transaction, []);
5205
5205
  }
5206
- await Promise.all(normalTransactions.map((transaction) => this.#handleTransaction(transaction, [], block)));
5206
+ await Promise.all(normalTransactions.map((transaction) => this.#handleTransaction(transaction, [])));
5207
5207
  // for (let transaction of transactionsMessages) {
5208
5208
  // // await transactionStore.put(transaction.hash, transaction.encoded)
5209
5209
  // if (!contracts.includes(transaction.to)) {
package/exports/chain.js CHANGED
@@ -1568,9 +1568,9 @@ class Chain extends VersionControl {
1568
1568
  normalTransactions.push(transaction);
1569
1569
  }
1570
1570
  for (const transaction of priorityransactions.sort((a, b) => a.decoded.nonce - b.decoded.nonce)) {
1571
- await this.#handleTransaction(transaction, [], block);
1571
+ await this.#handleTransaction(transaction, []);
1572
1572
  }
1573
- await Promise.all(normalTransactions.map((transaction) => this.#handleTransaction(transaction, [], block)));
1573
+ await Promise.all(normalTransactions.map((transaction) => this.#handleTransaction(transaction, [])));
1574
1574
  // for (let transaction of transactionsMessages) {
1575
1575
  // // await transactionStore.put(transaction.hash, transaction.encoded)
1576
1576
  // if (!contracts.includes(transaction.to)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leofcoin/chain",
3
- "version": "1.7.21",
3
+ "version": "1.7.22",
4
4
  "description": "Official javascript implementation",
5
5
  "private": false,
6
6
  "exports": {