mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
20 lines
376 B
Go
20 lines
376 B
Go
package keeper
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/kava-labs/kava/x/shutdown/types"
|
|
)
|
|
|
|
// Keeper stores routes that have been "broken"
|
|
type Keeper struct {
|
|
}
|
|
|
|
func (k Keeper) GetMsgRoutes(ctx sdk.Context) []types.MsgRoute {
|
|
// TODO
|
|
return []types.MsgRoute{}
|
|
}
|
|
|
|
func (k Keeper) SetMsgRoutes(ctx sdk.Context, routes []types.MsgRoute) {
|
|
// TODO
|
|
}
|