mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
27 lines
617 B
Go
27 lines
617 B
Go
|
package keeper
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
"github.com/kava-labs/kava/x/community/types"
|
||
|
)
|
||
|
|
||
|
type queryServer struct {
|
||
|
keeper Keeper
|
||
|
}
|
||
|
|
||
|
var _ types.QueryServer = queryServer{}
|
||
|
|
||
|
// NewQueryServerImpl creates a new server for handling gRPC queries.
|
||
|
func NewQueryServerImpl(k Keeper) types.QueryServer {
|
||
|
return &queryServer{keeper: k}
|
||
|
}
|
||
|
|
||
|
func (s queryServer) Balance(c context.Context, _ *types.QueryBalanceRequest) (*types.QueryBalanceResponse, error) {
|
||
|
ctx := sdk.UnwrapSDKContext(c)
|
||
|
return &types.QueryBalanceResponse{
|
||
|
Coins: s.keeper.GetModuleAccountBalance(ctx),
|
||
|
}, nil
|
||
|
}
|