lint fix, add make test_lint

This commit is contained in:
rigelrozanski 2018-04-27 15:20:12 -04:00
parent 260ab69e4f
commit bffb0132a5
2 changed files with 5 additions and 1 deletions

View File

@ -99,6 +99,9 @@ test_unit:
test_cover:
@bash tests/test_cover.sh
test_lint:
gometalinter --disable-all --enable='golint' --vendor ./...
benchmark:
@go test -bench=. $(PACKAGES)
@ -130,4 +133,4 @@ devdoc_update:
# To avoid unintended conflicts with file names, always add to .PHONY
# unless there is a reason not to.
# https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
.PHONY: build build_examples install install_examples dist check_tools get_tools get_vendor_deps draw_deps test test_unit test_tutorial benchmark devdoc_init devdoc devdoc_save devdoc_update
.PHONY: build build_examples install install_examples dist check_tools get_tools get_vendor_deps draw_deps test test_nocli test_unit test_cover test_lint benchmark devdoc_init devdoc devdoc_save devdoc_update

View File

@ -4,6 +4,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
)
// Handle fee distribution to the validators and delegators
func FeeHandler(ctx sdk.Context, tx sdk.Tx, fee sdk.Coins) {
}