Implement eth_pendingTransactions, bump sdk version (#124)

* Update sdk version, implement pending txs, fix nonce check

* Bump cached dependencies in circleCI

* bump circleci go version

* updated linter and fixed bugs relating to go version 1.13
This commit is contained in:
Austin Abell
2019-10-19 08:23:09 +09:00
committed by GitHub
parent 9802cbc98e
commit 160e82b2ad
11 changed files with 210 additions and 78 deletions
+4 -4
View File
@@ -46,7 +46,7 @@ clean:
update-tools:
@echo "--> Updating vendor dependencies"
${GO_MOD} go get -u -v $(GOLINT) $(UNCONVERT) $(INEFFASSIGN) $(MISSPELL) $(ERRCHECK) $(UNPARAM)
${GO_MOD} go get -v $(GOCILINT)
${GO_MOD} go get -u -v $(GOCILINT)
verify:
@echo "--> Verifying dependencies have not been modified"
@@ -62,7 +62,7 @@ verify:
##########################################################
GOLINT = github.com/tendermint/lint/golint
GOCILINT = github.com/golangci/golangci-lint/cmd/golangci-lint@v1.17.1
GOCILINT = github.com/golangci/golangci-lint/cmd/golangci-lint
UNCONVERT = github.com/mdempsky/unconvert
INEFFASSIGN = github.com/gordonklaus/ineffassign
MISSPELL = github.com/client9/misspell/cmd/misspell
@@ -137,7 +137,7 @@ test-race:
test-cli:
@echo "NO CLI TESTS"
test-lint:
lint:
@echo "--> Running golangci-lint..."
@${GO_MOD} golangci-lint run --deadline=5m ./...
@@ -163,5 +163,5 @@ format:
@find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs gofmt -w -s
@find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs misspell -w
.PHONY: build install update-tools tools godocs clean format test-lint \
.PHONY: build install update-tools tools godocs clean format lint \
test-cli test-race test-unit test test-import