0g-chain/x/community/keeper/staking_test.go
2024-08-02 12:22:00 +08:00

19 lines
449 B
Go

package keeper_test
import (
"testing"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/suite"
"github.com/0glabs/0g-chain/x/community/keeper"
"github.com/0glabs/0g-chain/x/community/testutil"
)
func TestKeeperPayoutAccumulatedStakingRewards(t *testing.T) {
testFunc := func(ctx sdk.Context, k keeper.Keeper) {
k.PayoutAccumulatedStakingRewards(ctx)
}
suite.Run(t, testutil.NewStakingRewardsTestSuite(testFunc))
}