Skip to content
Snippets Groups Projects
Commit a9218e16 authored by shall0pass's avatar shall0pass Committed by James Long
Browse files

removed additional function

parent 0a61acdf
No related branches found
No related tags found
No related merge requests found
...@@ -232,18 +232,6 @@ export async function holdForNextMonth({ month, amount }) { ...@@ -232,18 +232,6 @@ export async function holdForNextMonth({ month, amount }) {
return false; return false;
} }
export async function holdForFutureMonths({ startMonth, amount }) {
let months = getAllMonths(startMonth);
await batchMessages(async () => {
for (let month of months) {
if (!(await holdForNextMonth({ month, amount }))) {
break;
}
}
});
}
export async function resetHold({ month }) { export async function resetHold({ month }) {
await setBuffer(month, 0); await setBuffer(month, 0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment