addressing PR 154 comments

This commit is contained in:
rigel rozanski
2017-07-06 05:39:58 -04:00
parent 0303f2aaaa
commit 9b561344fe
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ type BaseTxPresenter struct {
}
// ParseData - unmarshal raw bytes to a basecoin tx
func (b BaseTxPresenter) ParseData(raw []byte) (interface{}, error) {
func (BaseTxPresenter) ParseData(raw []byte) (interface{}, error) {
var tx basecoin.Tx
err := wire.ReadBinaryBytes(raw, &tx)
return tx, err