Fix Makefile build command; Define Signature interface

This commit is contained in:
Jae Kwon 2015-07-19 09:45:40 -07:00
parent 1e7cc32597
commit 6ca7a3ec21
2 changed files with 3 additions and 1 deletions

View File

@ -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:

View File

@ -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