This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
Fix Makefile build command; Define Signature interface
pull/115/head
Jae Kwon
10 years ago
parent
1e7cc32597
commit
6ca7a3ec21
2 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile
+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
Write
Preview
Loading…
Cancel
Save