mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 03:37:28 +00:00 
			
		
		
		
	x/validator-vesting: remove internal pkg
This commit is contained in:
		
							parent
							
								
									fd39cea7a5
								
							
						
					
					
						commit
						4e3dfdf707
					
				@ -7,7 +7,7 @@ import (
 | 
				
			|||||||
	tmtime "github.com/tendermint/tendermint/types/time"
 | 
						tmtime "github.com/tendermint/tendermint/types/time"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sdk "github.com/cosmos/cosmos-sdk/types"
 | 
						sdk "github.com/cosmos/cosmos-sdk/types"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/keeper"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/keeper"
 | 
				
			||||||
	abci "github.com/tendermint/tendermint/abci/types"
 | 
						abci "github.com/tendermint/tendermint/abci/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -11,8 +11,8 @@ import (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/staking"
 | 
						"github.com/cosmos/cosmos-sdk/x/staking"
 | 
				
			||||||
	stakingexported "github.com/cosmos/cosmos-sdk/x/staking/exported"
 | 
						stakingexported "github.com/cosmos/cosmos-sdk/x/staking/exported"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/keeper"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/keeper"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func TestBeginBlockerZeroHeight(t *testing.T) {
 | 
					func TestBeginBlockerZeroHeight(t *testing.T) {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,13 +1,13 @@
 | 
				
			|||||||
// nolint
 | 
					// nolint
 | 
				
			||||||
// autogenerated code using github.com/rigelrozanski/multitool
 | 
					// autogenerated code using github.com/rigelrozanski/multitool
 | 
				
			||||||
// aliases generated for the following subdirectories:
 | 
					// aliases generated for the following subdirectories:
 | 
				
			||||||
// ALIASGEN: github.com/kava-labs/kava/x/validator-vesting/internal/keeper
 | 
					// ALIASGEN: github.com/kava-labs/kava/x/validator-vesting/keeper
 | 
				
			||||||
// ALIASGEN: github.com/kava-labs/kava/x/validator-vesting/internal/types
 | 
					// ALIASGEN: github.com/kava-labs/kava/x/validator-vesting/types
 | 
				
			||||||
package validatorvesting
 | 
					package validatorvesting
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/keeper"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/keeper"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const (
 | 
					const (
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@ package cli
 | 
				
			|||||||
import (
 | 
					import (
 | 
				
			||||||
	"fmt"
 | 
						"fmt"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
	"github.com/spf13/cobra"
 | 
						"github.com/spf13/cobra"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/client"
 | 
						"github.com/cosmos/cosmos-sdk/client"
 | 
				
			||||||
 | 
				
			|||||||
@ -8,7 +8,7 @@ import (
 | 
				
			|||||||
	"github.com/cosmos/cosmos-sdk/client/context"
 | 
						"github.com/cosmos/cosmos-sdk/client/context"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/types/rest"
 | 
						"github.com/cosmos/cosmos-sdk/types/rest"
 | 
				
			||||||
	"github.com/gorilla/mux"
 | 
						"github.com/gorilla/mux"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// define routes that get registered by the main application
 | 
					// define routes that get registered by the main application
 | 
				
			||||||
 | 
				
			|||||||
@ -2,7 +2,7 @@ package validatorvesting
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	sdk "github.com/cosmos/cosmos-sdk/types"
 | 
						sdk "github.com/cosmos/cosmos-sdk/types"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// InitGenesis stores the account address of each ValidatorVestingAccount in the validator vesting keeper, for faster lookup.
 | 
					// InitGenesis stores the account address of each ValidatorVestingAccount in the validator vesting keeper, for faster lookup.
 | 
				
			||||||
 | 
				
			|||||||
@ -7,7 +7,7 @@ import (
 | 
				
			|||||||
	"github.com/cosmos/cosmos-sdk/codec"
 | 
						"github.com/cosmos/cosmos-sdk/codec"
 | 
				
			||||||
	sdk "github.com/cosmos/cosmos-sdk/types"
 | 
						sdk "github.com/cosmos/cosmos-sdk/types"
 | 
				
			||||||
	stakingexported "github.com/cosmos/cosmos-sdk/x/staking/exported"
 | 
						stakingexported "github.com/cosmos/cosmos-sdk/x/staking/exported"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
	"github.com/tendermint/tendermint/libs/log"
 | 
						"github.com/tendermint/tendermint/libs/log"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -11,7 +11,7 @@ import (
 | 
				
			|||||||
	sdk "github.com/cosmos/cosmos-sdk/types"
 | 
						sdk "github.com/cosmos/cosmos-sdk/types"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/staking"
 | 
						"github.com/cosmos/cosmos-sdk/x/staking"
 | 
				
			||||||
	stakingexported "github.com/cosmos/cosmos-sdk/x/staking/exported"
 | 
						stakingexported "github.com/cosmos/cosmos-sdk/x/staking/exported"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func TestGetSetValidatorVestingAccounts(t *testing.T) {
 | 
					func TestGetSetValidatorVestingAccounts(t *testing.T) {
 | 
				
			||||||
@ -4,7 +4,7 @@ import (
 | 
				
			|||||||
	sdk "github.com/cosmos/cosmos-sdk/types"
 | 
						sdk "github.com/cosmos/cosmos-sdk/types"
 | 
				
			||||||
	authexported "github.com/cosmos/cosmos-sdk/x/auth/exported"
 | 
						authexported "github.com/cosmos/cosmos-sdk/x/auth/exported"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/auth/vesting"
 | 
						"github.com/cosmos/cosmos-sdk/x/auth/vesting"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
	abci "github.com/tendermint/tendermint/abci/types"
 | 
						abci "github.com/tendermint/tendermint/abci/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -25,7 +25,7 @@ import (
 | 
				
			|||||||
	"github.com/cosmos/cosmos-sdk/x/params"
 | 
						"github.com/cosmos/cosmos-sdk/x/params"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/staking"
 | 
						"github.com/cosmos/cosmos-sdk/x/staking"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/supply"
 | 
						"github.com/cosmos/cosmos-sdk/x/supply"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//nolint: deadcode unused
 | 
					//nolint: deadcode unused
 | 
				
			||||||
@ -15,8 +15,8 @@ import (
 | 
				
			|||||||
	sim "github.com/cosmos/cosmos-sdk/x/simulation"
 | 
						sim "github.com/cosmos/cosmos-sdk/x/simulation"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/client/cli"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/client/cli"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/client/rest"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/client/rest"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
					 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/simulation"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/simulation"
 | 
				
			||||||
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var (
 | 
					var (
 | 
				
			||||||
 | 
				
			|||||||
@ -9,7 +9,7 @@ import (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/codec"
 | 
						"github.com/cosmos/cosmos-sdk/codec"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/auth/exported"
 | 
						"github.com/cosmos/cosmos-sdk/x/auth/exported"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// DecodeStore unmarshals the KVPair's Value to the corresponding auth type
 | 
					// DecodeStore unmarshals the KVPair's Value to the corresponding auth type
 | 
				
			||||||
 | 
				
			|||||||
@ -11,7 +11,7 @@ import (
 | 
				
			|||||||
	vestexported "github.com/cosmos/cosmos-sdk/x/auth/vesting/exported"
 | 
						vestexported "github.com/cosmos/cosmos-sdk/x/auth/vesting/exported"
 | 
				
			||||||
	vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
 | 
						vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/simulation"
 | 
						"github.com/cosmos/cosmos-sdk/x/simulation"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// RandomizedGenState generates a random GenesisState for validator-vesting
 | 
					// RandomizedGenState generates a random GenesisState for validator-vesting
 | 
				
			||||||
 | 
				
			|||||||
@ -18,8 +18,8 @@ import (
 | 
				
			|||||||
	"github.com/cosmos/cosmos-sdk/x/staking"
 | 
						"github.com/cosmos/cosmos-sdk/x/staking"
 | 
				
			||||||
	"github.com/cosmos/cosmos-sdk/x/supply"
 | 
						"github.com/cosmos/cosmos-sdk/x/supply"
 | 
				
			||||||
	supplyexported "github.com/cosmos/cosmos-sdk/x/supply/exported"
 | 
						supplyexported "github.com/cosmos/cosmos-sdk/x/supply/exported"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/keeper"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/keeper"
 | 
				
			||||||
	"github.com/kava-labs/kava/x/validator-vesting/internal/types"
 | 
						"github.com/kava-labs/kava/x/validator-vesting/types"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var (
 | 
					var (
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user