Skip to content

Commit

Permalink
refactor: rename rewards_compounded
Browse files Browse the repository at this point in the history
  • Loading branch information
ethzoomer committed Sep 6, 2023
1 parent 8d17df7 commit c097f8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/RelaySugar.vy
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ struct Relay:
voted_at: uint256
votes: DynArray[LpVotes, MAX_PAIRS]
token: address
rewards_compounded: uint256
compounded: uint256
manager: address
relay: address
inactive: bool
Expand Down Expand Up @@ -170,7 +170,7 @@ def _byAddress(_relay: address, _account: address) -> Relay:
voted_at: last_voted,
votes: votes,
token: relay.token(),
rewards_compounded: rewards_compounded,
compounded: rewards_compounded,
manager: manager,
relay: _relay,
inactive: inactive,
Expand Down

0 comments on commit c097f8a

Please sign in to comment.