Merge PR #1438: Tools: Add errcheck linter
This linter ensures that all errors are checked. This is disabled in the client directories, since its not needed on those writes
This commit is contained in:
parent
7f59aa259f
commit
ac3adff1e8
|
@ -40,6 +40,7 @@ FEATURES
|
||||||
* go vet -composites=false
|
* go vet -composites=false
|
||||||
* unconvert
|
* unconvert
|
||||||
* ineffassign
|
* ineffassign
|
||||||
|
* errcheck
|
||||||
* [server] Default config now creates a profiler at port 6060, and increase p2p send/recv rates
|
* [server] Default config now creates a profiler at port 6060, and increase p2p send/recv rates
|
||||||
* [tests] Add WaitForNextNBlocksTM helper method
|
* [tests] Add WaitForNextNBlocksTM helper method
|
||||||
* [types] Switches internal representation of Int/Uint/Rat to use pointers
|
* [types] Switches internal representation of Int/Uint/Rat to use pointers
|
||||||
|
|
1
Makefile
1
Makefile
|
@ -109,6 +109,7 @@ test_cover:
|
||||||
|
|
||||||
test_lint:
|
test_lint:
|
||||||
gometalinter.v2 --disable-all --enable='golint' --enable='misspell' --enable='unconvert' --enable='ineffassign' --linter='vet:go vet -composites=false:PATH:LINE:MESSAGE' --enable='vet' --deadline=500s --vendor ./...
|
gometalinter.v2 --disable-all --enable='golint' --enable='misspell' --enable='unconvert' --enable='ineffassign' --linter='vet:go vet -composites=false:PATH:LINE:MESSAGE' --enable='vet' --deadline=500s --vendor ./...
|
||||||
|
!(gometalinter.v2 --disable-all --enable='errcheck' --vendor ./... | grep -v "client/")
|
||||||
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs gofmt -d -s
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs gofmt -d -s
|
||||||
|
|
||||||
benchmark:
|
benchmark:
|
||||||
|
|
|
@ -164,13 +164,19 @@ func (app *BaseApp) Router() Router { return app.router }
|
||||||
|
|
||||||
// load latest application version
|
// load latest application version
|
||||||
func (app *BaseApp) LoadLatestVersion(mainKey sdk.StoreKey) error {
|
func (app *BaseApp) LoadLatestVersion(mainKey sdk.StoreKey) error {
|
||||||
app.cms.LoadLatestVersion()
|
err := app.cms.LoadLatestVersion()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
return app.initFromStore(mainKey)
|
return app.initFromStore(mainKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
// load application version
|
// load application version
|
||||||
func (app *BaseApp) LoadVersion(version int64, mainKey sdk.StoreKey) error {
|
func (app *BaseApp) LoadVersion(version int64, mainKey sdk.StoreKey) error {
|
||||||
app.cms.LoadVersion(version)
|
err := app.cms.LoadVersion(version)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
return app.initFromStore(mainKey)
|
return app.initFromStore(mainKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,12 +13,20 @@ func RunForever(app abci.Application) {
|
||||||
srv, err := server.NewServer("0.0.0.0:26658", "socket", app)
|
srv, err := server.NewServer("0.0.0.0:26658", "socket", app)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cmn.Exit(err.Error())
|
cmn.Exit(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = srv.Start()
|
||||||
|
if err != nil {
|
||||||
|
cmn.Exit(err.Error())
|
||||||
|
return
|
||||||
}
|
}
|
||||||
srv.Start()
|
|
||||||
|
|
||||||
// Wait forever
|
// Wait forever
|
||||||
cmn.TrapSignal(func() {
|
cmn.TrapSignal(func() {
|
||||||
// Cleanup
|
// Cleanup
|
||||||
srv.Stop()
|
err := srv.Stop()
|
||||||
|
if err != nil {
|
||||||
|
cmn.Exit(err.Error())
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -142,5 +142,9 @@ func main() {
|
||||||
|
|
||||||
// prepare and add flags
|
// prepare and add flags
|
||||||
executor := cli.PrepareMainCmd(rootCmd, "GA", app.DefaultCLIHome)
|
executor := cli.PrepareMainCmd(rootCmd, "GA", app.DefaultCLIHome)
|
||||||
executor.Execute()
|
err := executor.Execute()
|
||||||
|
if err != nil {
|
||||||
|
// handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,11 @@ func main() {
|
||||||
|
|
||||||
// prepare and add flags
|
// prepare and add flags
|
||||||
executor := cli.PrepareBaseCmd(rootCmd, "GA", app.DefaultNodeHome)
|
executor := cli.PrepareBaseCmd(rootCmd, "GA", app.DefaultNodeHome)
|
||||||
executor.Execute()
|
err := executor.Execute()
|
||||||
|
if err != nil {
|
||||||
|
// handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func newApp(logger log.Logger, db dbm.DB) abci.Application {
|
func newApp(logger log.Logger, db dbm.DB) abci.Application {
|
||||||
|
|
|
@ -80,5 +80,9 @@ func main() {
|
||||||
|
|
||||||
// prepare and add flags
|
// prepare and add flags
|
||||||
executor := cli.PrepareMainCmd(rootCmd, "BC", os.ExpandEnv("$HOME/.basecli"))
|
executor := cli.PrepareMainCmd(rootCmd, "BC", os.ExpandEnv("$HOME/.basecli"))
|
||||||
executor.Execute()
|
err := executor.Execute()
|
||||||
|
if err != nil {
|
||||||
|
// handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,7 +33,11 @@ func main() {
|
||||||
// prepare and add flags
|
// prepare and add flags
|
||||||
rootDir := os.ExpandEnv("$HOME/.basecoind")
|
rootDir := os.ExpandEnv("$HOME/.basecoind")
|
||||||
executor := cli.PrepareBaseCmd(rootCmd, "BC", rootDir)
|
executor := cli.PrepareBaseCmd(rootCmd, "BC", rootDir)
|
||||||
executor.Execute()
|
err := executor.Execute()
|
||||||
|
if err != nil {
|
||||||
|
// handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func newApp(logger log.Logger, db dbm.DB) abci.Application {
|
func newApp(logger log.Logger, db dbm.DB) abci.Application {
|
||||||
|
|
|
@ -92,5 +92,9 @@ func main() {
|
||||||
|
|
||||||
// prepare and add flags
|
// prepare and add flags
|
||||||
executor := cli.PrepareMainCmd(rootCmd, "BC", os.ExpandEnv("$HOME/.democli"))
|
executor := cli.PrepareMainCmd(rootCmd, "BC", os.ExpandEnv("$HOME/.democli"))
|
||||||
executor.Execute()
|
err := executor.Execute()
|
||||||
|
if err != nil {
|
||||||
|
// handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,5 +72,9 @@ func main() {
|
||||||
// prepare and add flags
|
// prepare and add flags
|
||||||
rootDir := os.ExpandEnv("$HOME/.democoind")
|
rootDir := os.ExpandEnv("$HOME/.democoind")
|
||||||
executor := cli.PrepareBaseCmd(rootCmd, "BC", rootDir)
|
executor := cli.PrepareBaseCmd(rootCmd, "BC", rootDir)
|
||||||
executor.Execute()
|
err := executor.Execute()
|
||||||
|
if err != nil {
|
||||||
|
// handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,12 +55,18 @@ func main() {
|
||||||
fmt.Println(err)
|
fmt.Println(err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
srv.Start()
|
err = srv.Start()
|
||||||
|
if err != nil {
|
||||||
|
cmn.Exit(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
// Wait forever
|
// Wait forever
|
||||||
cmn.TrapSignal(func() {
|
cmn.TrapSignal(func() {
|
||||||
// Cleanup
|
// Cleanup
|
||||||
srv.Stop()
|
err = srv.Stop()
|
||||||
|
if err != nil {
|
||||||
|
cmn.Exit(err.Error())
|
||||||
|
}
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,7 +88,7 @@ func GenTxCmd(ctx *Context, cdc *wire.Codec, appInit AppInit) *cobra.Command {
|
||||||
viper.GetBool(FlagOWK),
|
viper.GetBool(FlagOWK),
|
||||||
ip,
|
ip,
|
||||||
}
|
}
|
||||||
cliPrint, genTxFile, err := gentxWithConfig(ctx, cdc, appInit, config, genTxConfig)
|
cliPrint, genTxFile, err := gentxWithConfig(cdc, appInit, config, genTxConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ func GenTxCmd(ctx *Context, cdc *wire.Codec, appInit AppInit) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func gentxWithConfig(ctx *Context, cdc *wire.Codec, appInit AppInit, config *cfg.Config, genTxConfig serverconfig.GenTx) (
|
func gentxWithConfig(cdc *wire.Codec, appInit AppInit, config *cfg.Config, genTxConfig serverconfig.GenTx) (
|
||||||
cliPrint json.RawMessage, genTxFile json.RawMessage, err error) {
|
cliPrint json.RawMessage, genTxFile json.RawMessage, err error) {
|
||||||
nodeKey, err := p2p.LoadOrGenNodeKey(config.NodeKeyFile())
|
nodeKey, err := p2p.LoadOrGenNodeKey(config.NodeKeyFile())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -169,7 +169,7 @@ func InitCmd(ctx *Context, cdc *wire.Codec, appInit AppInit) *cobra.Command {
|
||||||
viper.GetBool(FlagOverwrite),
|
viper.GetBool(FlagOverwrite),
|
||||||
}
|
}
|
||||||
|
|
||||||
chainID, nodeID, appMessage, err := initWithConfig(ctx, cdc, appInit, config, initConfig)
|
chainID, nodeID, appMessage, err := initWithConfig(cdc, appInit, config, initConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -200,7 +200,7 @@ func InitCmd(ctx *Context, cdc *wire.Codec, appInit AppInit) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func initWithConfig(ctx *Context, cdc *wire.Codec, appInit AppInit, config *cfg.Config, initConfig InitConfig) (
|
func initWithConfig(cdc *wire.Codec, appInit AppInit, config *cfg.Config, initConfig InitConfig) (
|
||||||
chainID string, nodeID string, appMessage json.RawMessage, err error) {
|
chainID string, nodeID string, appMessage json.RawMessage, err error) {
|
||||||
nodeKey, err := p2p.LoadOrGenNodeKey(config.NodeKeyFile())
|
nodeKey, err := p2p.LoadOrGenNodeKey(config.NodeKeyFile())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package mock
|
package mock
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
@ -19,7 +20,10 @@ func SetupApp() (abci.Application, func(), error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
cleanup := func() {
|
cleanup := func() {
|
||||||
os.RemoveAll(rootDir)
|
err := os.RemoveAll(rootDir)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("could not delete %s, had error %s\n", rootDir, err.Error())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
app, err := NewApp(rootDir, logger)
|
app, err := NewApp(rootDir, logger)
|
||||||
|
|
|
@ -58,12 +58,18 @@ func startStandAlone(ctx *Context, appCreator AppCreator) error {
|
||||||
return errors.Errorf("error creating listener: %v\n", err)
|
return errors.Errorf("error creating listener: %v\n", err)
|
||||||
}
|
}
|
||||||
svr.SetLogger(ctx.Logger.With("module", "abci-server"))
|
svr.SetLogger(ctx.Logger.With("module", "abci-server"))
|
||||||
svr.Start()
|
err = svr.Start()
|
||||||
|
if err != nil {
|
||||||
|
cmn.Exit(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
// Wait forever
|
// Wait forever
|
||||||
cmn.TrapSignal(func() {
|
cmn.TrapSignal(func() {
|
||||||
// Cleanup
|
// Cleanup
|
||||||
svr.Stop()
|
err = svr.Stop()
|
||||||
|
if err != nil {
|
||||||
|
cmn.Exit(err.Error())
|
||||||
|
}
|
||||||
})
|
})
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,16 @@ func FreeTCPAddr() (addr, port string, err error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", "", err
|
return "", "", err
|
||||||
}
|
}
|
||||||
defer l.Close()
|
|
||||||
|
closer := func() {
|
||||||
|
err := l.Close()
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
defer closer()
|
||||||
|
|
||||||
portI := l.Addr().(*net.TCPAddr).Port
|
portI := l.Addr().(*net.TCPAddr).Port
|
||||||
port = fmt.Sprintf("%d", portI)
|
port = fmt.Sprintf("%d", portI)
|
||||||
|
@ -36,7 +45,11 @@ func setupViper(t *testing.T) func() {
|
||||||
require.Nil(t, err)
|
require.Nil(t, err)
|
||||||
viper.Set(cli.HomeFlag, rootDir)
|
viper.Set(cli.HomeFlag, rootDir)
|
||||||
return func() {
|
return func() {
|
||||||
os.RemoveAll(rootDir)
|
err := os.RemoveAll(rootDir)
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,12 @@ import (
|
||||||
|
|
||||||
gc "github.com/cosmos/cosmos-sdk/server/config"
|
gc "github.com/cosmos/cosmos-sdk/server/config"
|
||||||
|
|
||||||
|
"os"
|
||||||
|
|
||||||
"github.com/cosmos/cosmos-sdk/wire"
|
"github.com/cosmos/cosmos-sdk/wire"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
cfg "github.com/tendermint/tendermint/config"
|
cfg "github.com/tendermint/tendermint/config"
|
||||||
cmn "github.com/tendermint/tmlibs/common"
|
cmn "github.com/tendermint/tmlibs/common"
|
||||||
"os"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -42,7 +43,7 @@ Example:
|
||||||
`,
|
`,
|
||||||
RunE: func(_ *cobra.Command, _ []string) error {
|
RunE: func(_ *cobra.Command, _ []string) error {
|
||||||
config := ctx.Config
|
config := ctx.Config
|
||||||
err := testnetWithConfig(config, ctx, cdc, appInit)
|
err := testnetWithConfig(config, cdc, appInit)
|
||||||
return err
|
return err
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -58,7 +59,7 @@ Example:
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func testnetWithConfig(config *cfg.Config, ctx *Context, cdc *wire.Codec, appInit AppInit) error {
|
func testnetWithConfig(config *cfg.Config, cdc *wire.Codec, appInit AppInit) error {
|
||||||
|
|
||||||
outDir := viper.GetString(outputDir)
|
outDir := viper.GetString(outputDir)
|
||||||
// Generate private key, node ID, initial transaction
|
// Generate private key, node ID, initial transaction
|
||||||
|
@ -104,7 +105,7 @@ func testnetWithConfig(config *cfg.Config, ctx *Context, cdc *wire.Codec, appIni
|
||||||
}
|
}
|
||||||
|
|
||||||
// Run `init gen-tx` and generate initial transactions
|
// Run `init gen-tx` and generate initial transactions
|
||||||
cliPrint, genTxFile, err := gentxWithConfig(ctx, cdc, appInit, config, genTxConfig)
|
cliPrint, genTxFile, err := gentxWithConfig(cdc, appInit, config, genTxConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -154,7 +155,7 @@ func testnetWithConfig(config *cfg.Config, ctx *Context, cdc *wire.Codec, appIni
|
||||||
config.SetRoot(nodeDir)
|
config.SetRoot(nodeDir)
|
||||||
|
|
||||||
// Run `init` and generate genesis.json and config.toml
|
// Run `init` and generate genesis.json and config.toml
|
||||||
_, _, _, err := initWithConfig(ctx, cdc, appInit, config, initConfig)
|
_, _, _, err := initWithConfig(cdc, appInit, config, initConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,11 @@ func PersistentPreRunEFn(context *Context) func(*cobra.Command, []string) error
|
||||||
// If a new config is created, change some of the default tendermint settings
|
// If a new config is created, change some of the default tendermint settings
|
||||||
func interceptLoadConfig() (conf *cfg.Config, err error) {
|
func interceptLoadConfig() (conf *cfg.Config, err error) {
|
||||||
tmpConf := cfg.DefaultConfig()
|
tmpConf := cfg.DefaultConfig()
|
||||||
viper.Unmarshal(tmpConf)
|
err = viper.Unmarshal(tmpConf)
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
rootDir := tmpConf.RootDir
|
rootDir := tmpConf.RootDir
|
||||||
configFilePath := filepath.Join(rootDir, "config/config.toml")
|
configFilePath := filepath.Join(rootDir, "config/config.toml")
|
||||||
// Intercept only if the file doesn't already exist
|
// Intercept only if the file doesn't already exist
|
||||||
|
|
|
@ -67,7 +67,11 @@ func (st *iavlStore) Commit() CommitID {
|
||||||
// Release an old version of history
|
// Release an old version of history
|
||||||
if st.numHistory > 0 && (st.numHistory < st.tree.Version64()) {
|
if st.numHistory > 0 && (st.numHistory < st.tree.Version64()) {
|
||||||
toRelease := version - st.numHistory
|
toRelease := version - st.numHistory
|
||||||
st.tree.DeleteVersion(toRelease)
|
err := st.tree.DeleteVersion(toRelease)
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return CommitID{
|
return CommitID{
|
||||||
|
|
|
@ -343,7 +343,11 @@ func (si storeInfo) Hash() []byte {
|
||||||
// include them via the keys.
|
// include them via the keys.
|
||||||
bz, _ := cdc.MarshalBinary(si.Core) // Does not error
|
bz, _ := cdc.MarshalBinary(si.Core) // Does not error
|
||||||
hasher := ripemd160.New()
|
hasher := ripemd160.New()
|
||||||
hasher.Write(bz)
|
_, err := hasher.Write(bz)
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
return hasher.Sum(nil)
|
return hasher.Sum(nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,10 @@ func waitForHeight(height int64, url string) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
res.Body.Close()
|
err = res.Body.Close()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
var resultBlock ctypes.ResultBlock
|
var resultBlock ctypes.ResultBlock
|
||||||
err = cdc.UnmarshalJSON(body, &resultBlock)
|
err = cdc.UnmarshalJSON(body, &resultBlock)
|
||||||
|
@ -136,7 +139,10 @@ func WaitForStart(port string) {
|
||||||
|
|
||||||
// waiting for server to start ...
|
// waiting for server to start ...
|
||||||
if res.StatusCode != http.StatusOK {
|
if res.StatusCode != http.StatusOK {
|
||||||
res.Body.Close()
|
err = res.Body.Close()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ GOMETALINTER = gopkg.in/alecthomas/gometalinter.v2
|
||||||
UNCONVERT = github.com/mdempsky/unconvert
|
UNCONVERT = github.com/mdempsky/unconvert
|
||||||
INEFFASSIGN = github.com/gordonklaus/ineffassign
|
INEFFASSIGN = github.com/gordonklaus/ineffassign
|
||||||
MISSPELL = github.com/client9/misspell/cmd/misspell
|
MISSPELL = github.com/client9/misspell/cmd/misspell
|
||||||
|
ERRCHECK = github.com/kisielk/errcheck
|
||||||
|
|
||||||
DEP_CHECK := $(shell command -v dep 2> /dev/null)
|
DEP_CHECK := $(shell command -v dep 2> /dev/null)
|
||||||
GOLINT_CHECK := $(shell command -v golint 2> /dev/null)
|
GOLINT_CHECK := $(shell command -v golint 2> /dev/null)
|
||||||
|
@ -17,6 +18,7 @@ GOMETALINTER_CHECK := $(shell command -v gometalinter.v2 2> /dev/null)
|
||||||
UNCONVERT_CHECK := $(shell command -v unconvert 2> /dev/null)
|
UNCONVERT_CHECK := $(shell command -v unconvert 2> /dev/null)
|
||||||
INEFFASSIGN_CHECK := $(shell command -v ineffassign 2> /dev/null)
|
INEFFASSIGN_CHECK := $(shell command -v ineffassign 2> /dev/null)
|
||||||
MISSPELL_CHECK := $(shell command -v misspell 2> /dev/null)
|
MISSPELL_CHECK := $(shell command -v misspell 2> /dev/null)
|
||||||
|
ERRCHECK_CHECK := $(shell command -v errcheck 2> /dev/null)
|
||||||
|
|
||||||
check_tools:
|
check_tools:
|
||||||
ifndef DEP_CHECK
|
ifndef DEP_CHECK
|
||||||
|
@ -49,6 +51,11 @@ ifndef MISSPELL_CHECK
|
||||||
else
|
else
|
||||||
@echo "Found misspell in path."
|
@echo "Found misspell in path."
|
||||||
endif
|
endif
|
||||||
|
ifndef MISSPELL_CHECK
|
||||||
|
@echo "No errcheck in path. Install with 'make get_tools'."
|
||||||
|
else
|
||||||
|
@echo "Found errcheck in path."
|
||||||
|
endif
|
||||||
|
|
||||||
get_tools:
|
get_tools:
|
||||||
ifdef DEP_CHECK
|
ifdef DEP_CHECK
|
||||||
|
@ -87,6 +94,12 @@ else
|
||||||
@echo "Installing misspell"
|
@echo "Installing misspell"
|
||||||
go get -v $(MISSPELL)
|
go get -v $(MISSPELL)
|
||||||
endif
|
endif
|
||||||
|
ifdef ERRCHECK_CHECK
|
||||||
|
@echo "misspell is already installed. Run 'make update_tools' to update."
|
||||||
|
else
|
||||||
|
@echo "Installing misspell"
|
||||||
|
go get -v $(ERRCHECK)
|
||||||
|
endif
|
||||||
|
|
||||||
update_tools:
|
update_tools:
|
||||||
@echo "Updating dep"
|
@echo "Updating dep"
|
||||||
|
@ -101,6 +114,8 @@ update_tools:
|
||||||
go get -u -v $(INEFFASSIGN)
|
go get -u -v $(INEFFASSIGN)
|
||||||
@echo "Updating misspell"
|
@echo "Updating misspell"
|
||||||
go get -u -v $(MISSPELL)
|
go get -u -v $(MISSPELL)
|
||||||
|
@echo "Updating errcheck"
|
||||||
|
go get -u -v $(ERRCHECK)
|
||||||
|
|
||||||
# To avoid unintended conflicts with file names, always add to .PHONY
|
# To avoid unintended conflicts with file names, always add to .PHONY
|
||||||
# unless there is a reason not to.
|
# unless there is a reason not to.
|
||||||
|
|
|
@ -233,7 +233,11 @@ func (m Linear) Flush(ptr interface{}, fn func() bool) {
|
||||||
|
|
||||||
var i uint64
|
var i uint64
|
||||||
for i = top; i < length; i++ {
|
for i = top; i < length; i++ {
|
||||||
m.Get(i, ptr)
|
err := m.Get(i, ptr)
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
m.Delete(i)
|
m.Delete(i)
|
||||||
if fn() {
|
if fn() {
|
||||||
break
|
break
|
||||||
|
|
|
@ -140,8 +140,11 @@ func processSig(
|
||||||
return nil, sdk.ErrInvalidSequence(
|
return nil, sdk.ErrInvalidSequence(
|
||||||
fmt.Sprintf("Invalid sequence. Got %d, expected %d", sig.Sequence, seq)).Result()
|
fmt.Sprintf("Invalid sequence. Got %d, expected %d", sig.Sequence, seq)).Result()
|
||||||
}
|
}
|
||||||
acc.SetSequence(seq + 1)
|
err := acc.SetSequence(seq + 1)
|
||||||
|
if err != nil {
|
||||||
|
// Handle w/ #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
// If pubkey is not known for account,
|
// If pubkey is not known for account,
|
||||||
// set it from the StdSignature.
|
// set it from the StdSignature.
|
||||||
pubKey := acc.GetPubKey()
|
pubKey := acc.GetPubKey()
|
||||||
|
@ -154,7 +157,7 @@ func processSig(
|
||||||
return nil, sdk.ErrInvalidPubKey(
|
return nil, sdk.ErrInvalidPubKey(
|
||||||
fmt.Sprintf("PubKey does not match Signer address %v", addr)).Result()
|
fmt.Sprintf("PubKey does not match Signer address %v", addr)).Result()
|
||||||
}
|
}
|
||||||
err := acc.SetPubKey(pubKey)
|
err = acc.SetPubKey(pubKey)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, sdk.ErrInternal("setting PubKey on signer's account").Result()
|
return nil, sdk.ErrInternal("setting PubKey on signer's account").Result()
|
||||||
}
|
}
|
||||||
|
@ -181,7 +184,11 @@ func deductFees(acc Account, fee StdFee) (Account, sdk.Result) {
|
||||||
errMsg := fmt.Sprintf("%s < %s", coins, feeAmount)
|
errMsg := fmt.Sprintf("%s < %s", coins, feeAmount)
|
||||||
return nil, sdk.ErrInsufficientFunds(errMsg).Result()
|
return nil, sdk.ErrInsufficientFunds(errMsg).Result()
|
||||||
}
|
}
|
||||||
acc.SetCoins(newCoins)
|
err := acc.SetCoins(newCoins)
|
||||||
|
if err != nil {
|
||||||
|
// Handle w/ #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
return acc, sdk.Result{}
|
return acc, sdk.Result{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,14 +39,26 @@ func NewAccountMapper(cdc *wire.Codec, key sdk.StoreKey, proto Account) AccountM
|
||||||
// Implaements sdk.AccountMapper.
|
// Implaements sdk.AccountMapper.
|
||||||
func (am AccountMapper) NewAccountWithAddress(ctx sdk.Context, addr sdk.Address) Account {
|
func (am AccountMapper) NewAccountWithAddress(ctx sdk.Context, addr sdk.Address) Account {
|
||||||
acc := am.clonePrototype()
|
acc := am.clonePrototype()
|
||||||
acc.SetAddress(addr)
|
err := acc.SetAddress(addr)
|
||||||
acc.SetAccountNumber(am.GetNextAccountNumber(ctx))
|
if err != nil {
|
||||||
|
// Handle w/ #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
err = acc.SetAccountNumber(am.GetNextAccountNumber(ctx))
|
||||||
|
if err != nil {
|
||||||
|
// Handle w/ #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
return acc
|
return acc
|
||||||
}
|
}
|
||||||
|
|
||||||
// New Account
|
// New Account
|
||||||
func (am AccountMapper) NewAccount(ctx sdk.Context, acc Account) Account {
|
func (am AccountMapper) NewAccount(ctx sdk.Context, acc Account) Account {
|
||||||
acc.SetAccountNumber(am.GetNextAccountNumber(ctx))
|
err := acc.SetAccountNumber(am.GetNextAccountNumber(ctx))
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
return acc
|
return acc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,7 +126,11 @@ func (am AccountMapper) setSequence(ctx sdk.Context, addr sdk.Address, newSequen
|
||||||
if acc == nil {
|
if acc == nil {
|
||||||
return sdk.ErrUnknownAddress(addr.String())
|
return sdk.ErrUnknownAddress(addr.String())
|
||||||
}
|
}
|
||||||
acc.SetSequence(newSequence)
|
err := acc.SetSequence(newSequence)
|
||||||
|
if err != nil {
|
||||||
|
// Handle w/ #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
am.SetAccount(ctx, acc)
|
am.SetAccount(ctx, acc)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,7 +77,11 @@ func (app *App) InitChainer(ctx sdk.Context, _ abci.RequestInitChain) abci.Respo
|
||||||
// load the accounts
|
// load the accounts
|
||||||
for _, genacc := range app.GenesisAccounts {
|
for _, genacc := range app.GenesisAccounts {
|
||||||
acc := app.AccountMapper.NewAccountWithAddress(ctx, genacc.GetAddress())
|
acc := app.AccountMapper.NewAccountWithAddress(ctx, genacc.GetAddress())
|
||||||
acc.SetCoins(genacc.GetCoins())
|
err := acc.SetCoins(genacc.GetCoins())
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
app.AccountMapper.SetAccount(ctx, acc)
|
app.AccountMapper.SetAccount(ctx, acc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -131,7 +131,11 @@ func setCoins(ctx sdk.Context, am auth.AccountMapper, addr sdk.Address, amt sdk.
|
||||||
if acc == nil {
|
if acc == nil {
|
||||||
acc = am.NewAccountWithAddress(ctx, addr)
|
acc = am.NewAccountWithAddress(ctx, addr)
|
||||||
}
|
}
|
||||||
acc.SetCoins(amt)
|
err := acc.SetCoins(amt)
|
||||||
|
if err != nil {
|
||||||
|
// Handle w/ #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
am.SetAccount(ctx, acc)
|
am.SetAccount(ctx, acc)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,11 @@ func DefaultGenesisState() GenesisState {
|
||||||
|
|
||||||
// InitGenesis - store genesis parameters
|
// InitGenesis - store genesis parameters
|
||||||
func InitGenesis(ctx sdk.Context, k Keeper, data GenesisState) {
|
func InitGenesis(ctx sdk.Context, k Keeper, data GenesisState) {
|
||||||
k.setInitialProposalID(ctx, data.StartingProposalID)
|
err := k.setInitialProposalID(ctx, data.StartingProposalID)
|
||||||
|
if err != nil {
|
||||||
|
// TODO: Handle this with #870
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// WriteGenesis - output genesis parameters
|
// WriteGenesis - output genesis parameters
|
||||||
|
|
|
@ -66,10 +66,11 @@ func createTestInput(t *testing.T) (sdk.Context, bank.Keeper, stake.Keeper, Keep
|
||||||
genesis.Pool.LooseTokens = initCoins.MulRaw(int64(len(addrs))).Int64()
|
genesis.Pool.LooseTokens = initCoins.MulRaw(int64(len(addrs))).Int64()
|
||||||
stake.InitGenesis(ctx, sk, genesis)
|
stake.InitGenesis(ctx, sk, genesis)
|
||||||
for _, addr := range addrs {
|
for _, addr := range addrs {
|
||||||
ck.AddCoins(ctx, addr, sdk.Coins{
|
_, _, err = ck.AddCoins(ctx, addr, sdk.Coins{
|
||||||
{sk.GetParams(ctx).BondDenom, initCoins},
|
{sk.GetParams(ctx).BondDenom, initCoins},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
require.Nil(t, err)
|
||||||
keeper := NewKeeper(cdc, keySlashing, sk, DefaultCodespace)
|
keeper := NewKeeper(cdc, keySlashing, sk, DefaultCodespace)
|
||||||
return ctx, ck, sk, keeper
|
return ctx, ck, sk, keeper
|
||||||
}
|
}
|
||||||
|
|
|
@ -295,7 +295,10 @@ func (k Keeper) CompleteUnbonding(ctx sdk.Context, delegatorAddr, validatorAddr
|
||||||
return types.ErrNotMature(k.Codespace(), "unbonding", "unit-time", ubd.MinTime, ctxTime)
|
return types.ErrNotMature(k.Codespace(), "unbonding", "unit-time", ubd.MinTime, ctxTime)
|
||||||
}
|
}
|
||||||
|
|
||||||
k.coinKeeper.AddCoins(ctx, ubd.DelegatorAddr, sdk.Coins{ubd.Balance})
|
_, _, err := k.coinKeeper.AddCoins(ctx, ubd.DelegatorAddr, sdk.Coins{ubd.Balance})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
k.RemoveUnbondingDelegation(ctx, ubd)
|
k.RemoveUnbondingDelegation(ctx, ubd)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,9 +114,10 @@ func CreateTestInput(t *testing.T, isCheckTx bool, initCoins int64) (sdk.Context
|
||||||
// fill all the addresses with some coins, set the loose pool tokens simultaneously
|
// fill all the addresses with some coins, set the loose pool tokens simultaneously
|
||||||
for _, addr := range Addrs {
|
for _, addr := range Addrs {
|
||||||
pool := keeper.GetPool(ctx)
|
pool := keeper.GetPool(ctx)
|
||||||
ck.AddCoins(ctx, addr, sdk.Coins{
|
_, _, err := ck.AddCoins(ctx, addr, sdk.Coins{
|
||||||
{keeper.GetParams(ctx).BondDenom, sdk.NewInt(initCoins)},
|
{keeper.GetParams(ctx).BondDenom, sdk.NewInt(initCoins)},
|
||||||
})
|
})
|
||||||
|
require.Nil(t, err)
|
||||||
pool.LooseTokens += initCoins
|
pool.LooseTokens += initCoins
|
||||||
keeper.SetPool(ctx, pool)
|
keeper.SetPool(ctx, pool)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue