capitalisk-dex 18.0.0 → 18.0.2
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.
- package/index.js +9 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -832,6 +832,13 @@ module.exports = class CapitaliskDEXModule {
|
|
|
832
832
|
break;
|
|
833
833
|
}
|
|
834
834
|
this.pendingTransfers.delete(txnId);
|
|
835
|
+
this.logger.error(
|
|
836
|
+
`Outbound multisig transaction ${
|
|
837
|
+
txnId
|
|
838
|
+
} expired before it could be processed by the ${
|
|
839
|
+
transfer.targetChain
|
|
840
|
+
} blockchain`
|
|
841
|
+
);
|
|
835
842
|
}
|
|
836
843
|
}
|
|
837
844
|
|
|
@@ -1330,6 +1337,8 @@ module.exports = class CapitaliskDEXModule {
|
|
|
1330
1337
|
`Chain ${chainSymbol}: Processing block at height ${chainHeight}`
|
|
1331
1338
|
);
|
|
1332
1339
|
|
|
1340
|
+
this.scheduledTransferInfos = [];
|
|
1341
|
+
|
|
1333
1342
|
let baseChainHeight = latestChainHeights[this.baseChainSymbol];
|
|
1334
1343
|
if (baseChainHeight < this.options.dexEnabledFromHeight) {
|
|
1335
1344
|
this.logger.info(
|