Browse Source

Fix Makefile build command; Define Signature interface

pull/115/head
Jae Kwon 9 years ago
parent
commit
6ca7a3ec21
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      Makefile
  2. +2
    -0
      account/signature.go

+ 1
- 1
Makefile 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:


+ 2
- 0
account/signature.go 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


Loading…
Cancel
Save