Merge PR #5417: Update distribution module doc
This commit is contained in:
parent
3471256785
commit
908fd2ba78
|
@ -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
|
package distribution
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -12,6 +6,8 @@ import (
|
||||||
"github.com/cosmos/cosmos-sdk/x/distribution/types"
|
"github.com/cosmos/cosmos-sdk/x/distribution/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// nolint
|
||||||
|
|
||||||
const (
|
const (
|
||||||
DefaultParamspace = keeper.DefaultParamspace
|
DefaultParamspace = keeper.DefaultParamspace
|
||||||
DefaultCodespace = types.DefaultCodespace
|
DefaultCodespace = types.DefaultCodespace
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue