release method
Releases amount tokens back to the budget.
Implementation
void release(int amount) {
_used = math.max(0, _used - amount);
}
Releases amount tokens back to the budget.
void release(int amount) {
_used = math.max(0, _used - amount);
}