cosmos-sdk/x/distribution/keeper/delegation.go

128 lines
4.5 KiB
Go
Raw Normal View History

2018-09-04 23:41:17 -07:00
package keeper
import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/distribution/types"
)
// get the delegator distribution info
func (k Keeper) GetDelegatorDistInfo(ctx sdk.Context, delAddr sdk.AccAddress,
valOperatorAddr sdk.ValAddress) (ddi types.DelegatorDistInfo) {
store := ctx.KVStore(k.storeKey)
b := store.Get(GetDelegationDistInfoKey(delAddr, valOperatorAddr))
if b == nil {
panic("Stored delegation-distribution info should not have been nil")
}
k.cdc.MustUnmarshalBinary(b, &ddi)
return
}
// set the delegator distribution info
func (k Keeper) SetDelegatorDistInfo(ctx sdk.Context, ddi types.DelegatorDistInfo) {
store := ctx.KVStore(k.storeKey)
b := k.cdc.MustMarshalBinary(ddi)
store.Set(GetDelegationDistInfoKey(ddi.DelegatorAddr, ddi.ValOperatorAddr), b)
}
2018-09-17 20:02:15 -07:00
// remove a delegator distribution info
func (k Keeper) RemoveDelegatorDistInfo(ctx sdk.Context, delAddr sdk.AccAddress,
valOperatorAddr sdk.ValAddress) {
store := ctx.KVStore(k.storeKey)
2018-09-19 19:13:12 -07:00
store.Delete(GetDelegationDistInfoKey(delAddr, valOperatorAddr))
2018-09-17 20:02:15 -07:00
}
//___________________________________________________________________________________________
// get the delegator withdraw address, return the delegator address if not set
func (k Keeper) GetDelegatorWithdrawAddr(ctx sdk.Context, delAddr sdk.AccAddress) sdk.AccAddress {
store := ctx.KVStore(k.storeKey)
b := store.Get(GetDelegatorWithdrawAddrKey(delAddr))
if b == nil {
return delAddr
}
2018-09-19 19:13:12 -07:00
return sdk.AccAddress(b)
2018-09-17 20:02:15 -07:00
}
// set the delegator withdraw address
func (k Keeper) SetDelegatorWithdrawAddr(ctx sdk.Context, delAddr, withdrawAddr sdk.AccAddress) {
store := ctx.KVStore(k.storeKey)
2018-09-19 19:13:12 -07:00
store.Set(GetDelegatorWithdrawAddrKey(delAddr), withdrawAddr.Bytes())
2018-09-17 20:02:15 -07:00
}
// remove a delegator withdraw info
func (k Keeper) RemoveDelegatorWithdrawAddr(ctx sdk.Context, delAddr, withdrawAddr sdk.AccAddress) {
store := ctx.KVStore(k.storeKey)
store.Delete(GetDelegatorWithdrawAddrKey(delAddr))
}
2018-09-04 23:41:17 -07:00
//___________________________________________________________________________________________
2018-09-10 15:37:58 -07:00
// withdraw all the rewards for a single delegation
2018-09-17 20:02:15 -07:00
func (k Keeper) WithdrawDelegationReward(ctx sdk.Context, delegatorAddr sdk.AccAddress,
validatorAddr sdk.ValAddress) {
2018-09-10 15:37:58 -07:00
height := ctx.BlockHeight()
2018-09-19 19:13:12 -07:00
bondedTokens := k.stakeKeeper.TotalPower(ctx)
2018-09-13 23:35:02 -07:00
feePool := k.GetFeePool(ctx)
2018-09-19 19:13:12 -07:00
delInfo := k.GetDelegatorDistInfo(ctx, delegatorAddr, validatorAddr)
2018-09-13 23:35:02 -07:00
valInfo := k.GetValidatorDistInfo(ctx, validatorAddr)
2018-09-19 21:53:48 -07:00
validator := k.stakeKeeper.Validator(ctx, validatorAddr)
delegation := k.stakeKeeper.Delegation(ctx, delegatorAddr, validatorAddr)
2018-09-10 15:37:58 -07:00
delInfo, feePool, withdraw := delInfo.WithdrawRewards(feePool, valInfo, height, bondedTokens,
validator.GetTokens(), validator.GetDelegatorShares(), delegation.GetShares(), validator.GetCommission())
2018-09-04 23:41:17 -07:00
2018-09-13 23:35:02 -07:00
k.SetFeePool(ctx, feePool)
2018-09-19 19:13:12 -07:00
withdrawAddr := k.GetDelegatorWithdrawAddr(ctx, delegatorAddr)
2018-09-28 01:02:07 -07:00
_, _, err := k.bankKeeper.AddCoins(ctx, withdrawAddr, withdraw.TruncateDecimal())
if err != nil {
panic(err)
}
2018-09-04 23:41:17 -07:00
}
2018-09-17 20:02:15 -07:00
//___________________________________________________________________________________________
2018-09-04 23:41:17 -07:00
2018-09-10 15:37:58 -07:00
// return all rewards for all delegations of a delegator
2018-09-17 20:02:15 -07:00
func (k Keeper) WithdrawDelegationRewardsAll(ctx sdk.Context, delegatorAddr sdk.AccAddress) {
2018-09-10 15:37:58 -07:00
height := ctx.BlockHeight()
withdraw := k.GetDelegatorRewardsAll(ctx, delegatorAddr, height)
withdrawAddr := k.GetDelegatorWithdrawAddr(ctx, delegatorAddr)
2018-09-28 01:02:07 -07:00
_, _, err := k.bankKeeper.AddCoins(ctx, withdrawAddr, withdraw.TruncateDecimal())
if err != nil {
panic(err)
}
2018-09-04 23:41:17 -07:00
}
2018-09-10 15:37:58 -07:00
// return all rewards for all delegations of a delegator
2018-09-19 19:13:12 -07:00
func (k Keeper) GetDelegatorRewardsAll(ctx sdk.Context, delAddr sdk.AccAddress, height int64) types.DecCoins {
2018-09-04 23:41:17 -07:00
withdraw := types.DecCoins{}
bondedTokens := k.stakeKeeper.TotalPower(ctx)
2018-09-13 23:35:02 -07:00
feePool := k.GetFeePool(ctx)
2018-09-04 23:41:17 -07:00
// iterate over all the delegations
operationAtDelegation := func(_ int64, del sdk.Delegation) (stop bool) {
valAddr := del.GetValidator()
delInfo := k.GetDelegatorDistInfo(ctx, delAddr, valAddr)
valInfo := k.GetValidatorDistInfo(ctx, valAddr)
2018-09-19 21:53:48 -07:00
validator := k.stakeKeeper.Validator(ctx, valAddr)
delegation := k.stakeKeeper.Delegation(ctx, delAddr, valAddr)
delInfo, feePool, diWithdraw := delInfo.WithdrawRewards(feePool, valInfo, height, bondedTokens,
validator.GetTokens(), validator.GetDelegatorShares(), delegation.GetShares(), validator.GetCommission())
withdraw = withdraw.Plus(diWithdraw)
k.SetFeePool(ctx, feePool)
k.SetDelegatorDistInfo(ctx, delInfo)
2018-09-04 23:41:17 -07:00
return false
}
k.stakeKeeper.IterateDelegations(ctx, delAddr, operationAtDelegation)
2018-09-13 23:35:02 -07:00
k.SetFeePool(ctx, feePool)
2018-09-04 23:41:17 -07:00
return withdraw
}