Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cat.sol
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ contract Cat {
vow.fess(mul(dart, rate));

{ // Avoid stack too deep
// This calcuation will overflow if dart*rate exceeds ~10^14,
// This calculation will overflow if dart*rate exceeds ~10^14,
// i.e. the maximum dunk is roughly 100 trillion DAI.
uint256 tab = mul(mul(dart, rate), milk.chop) / WAD;
litter = add(litter, tab);
Expand Down