capitalisk-dex 18.1.1 → 18.2.1

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -2387,9 +2387,9 @@ module.exports = class CapitaliskDEXModule {
2387
2387
  });
2388
2388
 
2389
2389
  for (let block of orderedBlockList) {
2390
- latestProcessedChainHeights[block.chainSymbol] = block.height;
2391
2390
  try {
2392
2391
  if (!block.isSkipped) {
2392
+ latestProcessedChainHeights[block.chainSymbol] = block.height;
2393
2393
  await processBlock({
2394
2394
  chainSymbol: block.chainSymbol,
2395
2395
  chainHeight: block.height,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capitalisk-dex",
3
- "version": "18.1.1",
3
+ "version": "18.2.1",
4
4
  "description": "Decentralized exchange module.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "module"
18
18
  ],
19
19
  "author": "Jonathan Gros-Dubois",
20
- "license": "GPL-3.0",
20
+ "license": "AGPL-3.0",
21
21
  "dependencies": {
22
22
  "big-order-book": "^2.0.0",
23
23
  "proper-skip-list": "^4.1.0"