auth.AccountStore assumes go-wire; Remove GetTxBytes() from Tx

This commit is contained in:
Jae Kwon
2018-01-20 18:11:38 -08:00
parent 6d3b5cb402
commit 8fda920de0
7 changed files with 118 additions and 79 deletions
-14
View File
@@ -1,14 +0,0 @@
package types
// A generic codec for a fixed type.
type Codec interface {
// Returns a prototype (empty) object.
Prototype() interface{}
// Encodes the object.
Encode(o interface{}) ([]byte, error)
// Decodes an object.
Decode(bz []byte) (interface{}, error)
}