Merge PR #5417: Update distribution module doc

This commit is contained in:
Alexander Bezobchuk 2019-12-17 13:59:16 -05:00 committed by GitHub
parent 3471256785
commit 908fd2ba78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View File

@ -1,9 +1,3 @@
// nolint
// autogenerated code using github.com/rigelrozanski/multitool
// aliases generated for the following subdirectories:
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/distribution/keeper
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/distribution/types
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/distribution/client
package distribution
import (
@ -12,6 +6,8 @@ import (
"github.com/cosmos/cosmos-sdk/x/distribution/types"
)
// nolint
const (
DefaultParamspace = keeper.DefaultParamspace
DefaultCodespace = types.DefaultCodespace

6
x/distribution/doc.go Normal file
View File

@ -0,0 +1,6 @@
/*
Package distribution implements a Cosmos SDK module, that provides an implementation
of the F1 fee distribution algorithm. It handles reward tracking, allocation, and
distribution. Please refer to the specification under /spec for further information.
*/
package distribution