You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hedera-node/hedera-token-service-impl/src/main/java/com/hedera/node/app/service/token/impl/handlers/FinalizeParentRecordHandler.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ public void finalizeParentRecord(
Copy file name to clipboardExpand all lines: hedera-node/hedera-token-service-impl/src/main/java/com/hedera/node/app/service/token/impl/handlers/staking/StakingRewardsHandler.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -49,13 +49,13 @@ public interface StakingRewardsHandler {
49
49
*
50
50
* @param context the context of the transaction
51
51
* @param explicitRewardReceivers a set of accounts that must be considered for rewards independent of the context
52
-
* @param prePaidRewardReceivers a set of accounts that have already been paid rewards in the current transaction
52
+
* @param prePaidRewards a set of accounts that have already been paid rewards in the current transaction
53
53
* @return a map of account id to the amount of rewards paid out
54
54
*/
55
55
Map<AccountID, Long> applyStakingRewards(
56
56
FinalizeContextcontext,
57
57
@NonNullSet<AccountID> explicitRewardReceivers,
58
-
@NonNullSet<AccountID> prePaidRewardReceivers);
58
+
@NonNullMap<AccountID, Long> prePaidRewards);
59
59
60
60
/**
61
61
* Checks if the account has been rewarded since the last staking metadata change.
0 commit comments