fluxflow-cli 1.14.1 → 1.14.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/dist/fluxflow.js +1 -1
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -1228,7 +1228,7 @@ var init_revert = __esm({
|
|
|
1228
1228
|
if (!currentTransaction) return;
|
|
1229
1229
|
const ledger = readEncryptedJson(LEDGER_FILE, []);
|
|
1230
1230
|
ledger.push(currentTransaction);
|
|
1231
|
-
if (ledger.length >
|
|
1231
|
+
if (ledger.length > 512e3) {
|
|
1232
1232
|
const removed = ledger.shift();
|
|
1233
1233
|
if (removed.changes) {
|
|
1234
1234
|
for (const change of removed.changes) {
|