diff --git a/Makefile b/Makefile index b2e5709ec..79ac22797 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ build_race: test: build -rm -rf ~/.tendermint_test_bak - mv ~/.tendermint_test ~/.tendermint_test_bak + -mv ~/.tendermint_test ~/.tendermint_test_bak go test github.com/tendermint/tendermint/... draw_deps: diff --git a/account/signature.go b/account/signature.go index ab4d11752..a858cb0fd 100644 --- a/account/signature.go +++ b/account/signature.go @@ -9,6 +9,8 @@ import ( // Signature is a part of Txs and consensus Votes. type Signature interface { + IsZero() bool + String() string } // Types of Signature implementations