fixes to compile

This commit is contained in:
Ethan Buchman
2017-05-22 07:35:23 -04:00
parent 4503bb61f2
commit f4c5edaca3
4 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ type AccountPresenter struct{}
func (_ AccountPresenter) MakeKey(str string) ([]byte, error) {
res, err := hex.DecodeString(str)
if err == nil {
res = state.AccountKey(res)
res = btypes.AccountKey(res)
}
return res, err
}