mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-13 03:25:20 +00:00
18 lines
435 B
Go
18 lines
435 B
Go
package client
|
|
|
|
import (
|
|
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
|
|
|
|
"github.com/0glabs/0g-chain/x/community/client/cli"
|
|
)
|
|
|
|
// community-pool deposit/withdraw lend proposal handlers
|
|
var (
|
|
LendDepositProposalHandler = govclient.NewProposalHandler(
|
|
cli.NewCmdSubmitCommunityPoolLendDepositProposal,
|
|
)
|
|
LendWithdrawProposalHandler = govclient.NewProposalHandler(
|
|
cli.NewCmdSubmitCommunityPoolLendWithdrawProposal,
|
|
)
|
|
)
|