Skip to content

Commit

Permalink
Merge pull request #1718 from keep-network/re-genesis-fix
Browse files Browse the repository at this point in the history
Use groupSelectionStarterContract to reimburse for failed DKG
  • Loading branch information
nkuba authored Apr 30, 2020
2 parents 3b0d2e4 + 5cdc2e6 commit de22c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solidity/contracts/KeepRandomBeaconOperator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ contract KeepRandomBeaconOperator is ReentrancyGuard {
if (dkgSubmitterReimbursementFee > 0) {
uint256 surplus = dkgSubmitterReimbursementFee;
dkgSubmitterReimbursementFee = 0;
ServiceContract(msg.sender).fundDkgFeePool.value(surplus)();
ServiceContract(groupSelectionStarterContract).fundDkgFeePool.value(surplus)();
}

groupSelection.minimumStake = stakingContract.minimumStake();
Expand Down

0 comments on commit de22c09

Please sign in to comment.