Skip to content

Commit

Permalink
network readme upd
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Pavlov committed Aug 24, 2022
1 parent 2a70b8f commit becf094
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/tokens/RewardEthToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ contract RewardEthToken is IRewardEthToken, OwnablePausableUpgradeable, ERC20Per
require(msg.sender == oracles, "RewardEthToken: access denied");

uint256 feesAmount = IFeesEscrow(feesEscrow).transferToPool();
uint256 periodRewards = newTotalRewards.sub(totalRewards).add(feesAmount);
uint256 periodRewards = newTotalRewards.add(feesAmount).sub(totalRewards);

if (periodRewards == 0) {
lastUpdateBlockNumber = block.number;
Expand Down
5 changes: 5 additions & 0 deletions networks/goerli.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
- Contract: [0x040F15C6b5Bfc5F324eCaB5864C38D4e1EEF4218](https://goerli.etherscan.io/address/0x040f15c6b5bfc5f324ecab5864c38d4e1eef4218)
- Transaction: [0x7d0aa2f273c715ee913ffc45a1f830faac52fb84bf384b6fa3ac58308f375602](https://goerli.etherscan.io/tx/0x7d0aa2f273c715ee913ffc45a1f830faac52fb84bf384b6fa3ac58308f375602)

## Fees Escrow

- Contract: [0x56C25a5C1c82EC2E228b0931FE7A3d15D8A98b57](https://goerli.etherscan.io/address/0x56C25a5C1c82EC2E228b0931FE7A3d15D8A98b57)
- Trasnaction: [0x9eb4497a263031778aff05935ec1078fa5415a40455041e3b9a4fd5fc7bf5acb](https://goerli.etherscan.io/tx/0x9eb4497a263031778aff05935ec1078fa5415a40455041e3b9a4fd5fc7bf5acb)

## Pool Validators

- Contract: [0x3A2A4c01BC8595E168A90bA6F04BB8A9FEac2acb](https://goerli.etherscan.io/address/0x3A2A4c01BC8595E168A90bA6F04BB8A9FEac2acb)
Expand Down

0 comments on commit becf094

Please sign in to comment.