removed additional function

This commit is contained in:
shall0pass 2022-11-08 13:41:41 -06:00 committed by James Long
parent 0a61acdf8f
commit a9218e1625

View file

@ -232,18 +232,6 @@ export async function holdForNextMonth({ month, amount }) {
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 }) {
await setBuffer(month, 0);
}