@@ -114,6 +114,7 @@ contract MonthlyAllowance {
require(newPaidThisEpoch <= MONTHLY_LIMIT, "MonthlyAllowance::pay: Monthly allowance exceeded");
spentPerEpoch[epoch] = newPaidThisEpoch;
SafeERC20.safeTransferFrom(paymentAsset, reserves, recipient, amount);
+ emit Payment(recipient, amount);
}
function currentEpoch()
message:
李蓝天:改动分类:原因:
刘志浩:改动分类:原因: