Skip to content

Commit

Permalink
chore: add godoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Nov 4, 2024
1 parent 3187418 commit 6a02d5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/tokenomics/token_logic_module/reimbursement_requests.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type tlmGlobalMintReimbursementRequest struct {
daoRewardBech32 string
}

// TODO_IN_THIS_COMMIT: godoc...
// NewGlobalMintReimbursementRequestTLM returns a new GlobalMintReimbursementRequest TLM.
func NewGlobalMintReimbursementRequestTLM(daoRewardBech32 string) TokenLogicModule {
return &tlmGlobalMintReimbursementRequest{
daoRewardBech32: daoRewardBech32,
Expand Down
2 changes: 1 addition & 1 deletion x/tokenomics/token_logic_module/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package token_logic_module

import tokenomicstypes "github.com/pokt-network/poktroll/x/tokenomics/types"

// TODO_IN_THIS_COMMIT: godoc...
// ValidateTLMs ensures that the global mint and global mint reimbursement request TLMs are activated or deactivated together.
func ValidateTLMs(tokenLogicModules []TokenLogicModule) error {
var hasGlobalMintTLM, hasGlobalMintReimbursementRequestTLM bool
for _, tlm := range tokenLogicModules {
Expand Down

0 comments on commit 6a02d5e

Please sign in to comment.