update glide

This commit is contained in:
Ethan Buchman
2018-01-06 16:07:54 -05:00
parent 85eb58b7c1
commit 3235b2d647
4 changed files with 31 additions and 109 deletions
+1 -7
View File
@@ -1,16 +1,10 @@
package types
import (
"encoding/hex"
crypto "github.com/tendermint/go-crypto"
)
type Address []byte // TODO: cmn.HexBytes
func (a Address) String() string {
return hex.EncodeToString(a)
}
type Address = crypto.Address
type Account interface {
Address() Address