@hawksightco/hawk-sdk 1.3.216 → 1.3.217
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.
|
@@ -1477,8 +1477,8 @@ class Transactions {
|
|
|
1477
1477
|
const lowerBinId = positionData.lowerBinId;
|
|
1478
1478
|
const upperBinId = positionData.upperBinId;
|
|
1479
1479
|
const binCount = upperBinId - lowerBinId + 1;
|
|
1480
|
-
// For ≤
|
|
1481
|
-
if (binCount <=
|
|
1480
|
+
// For ≤70 bins, delegate to existing single-TX compoundAutomationIx
|
|
1481
|
+
if (binCount <= 70) {
|
|
1482
1482
|
const singleResult = yield this.compoundAutomationIx({ connection, params, fetch: undefined });
|
|
1483
1483
|
return [singleResult];
|
|
1484
1484
|
}
|