This commit is contained in:
Ethan Buchman 2017-02-19 14:22:38 -05:00
parent 78167b4e3a
commit 5c3550acce
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ func (s *State) Commit() abci.Result {
s.readCache = make(map[string][]byte)
return s.store.(*eyes.Client).CommitSync()
default:
return abci.NewError(abci.CodeType_InternalError, "can only use commit is store is merkleeyes")
return abci.NewError(abci.CodeType_InternalError, "can only use Commit if store is merkleeyes")
}
}