Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrent committed Jun 17, 2024
1 parent 35057d7 commit af8a56d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions contracts/p0/Distributor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ contract DistributorP0 is ComponentP0, IDistributor {
/// Set RevenueShares for destinations. Destinations `FURNACE` and `ST_RSR` refer to
/// main.furnace() and main.stRSR().
/// @custom:governance
// checks: invariants hold in post-state
// effects:
// destinations' = dests
// distribution' = shares
function setDistributions(address[] calldata dests, RevenueShare[] calldata shares)
external
governance
Expand Down
4 changes: 2 additions & 2 deletions contracts/p1/Distributor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ contract DistributorP1 is ComponentP1, IDistributor {
/// @custom:governance
// checks: invariants hold in post-state
// effects:
// destinations' = dests
// distribution' = shares
// destinations' = destinations.add(dests)
// distribution' = distribution.set(dests[i], shares[i]) for i < dests.length
function setDistributions(address[] calldata dests, RevenueShare[] calldata shares)
external
governance
Expand Down

0 comments on commit af8a56d

Please sign in to comment.