(fileHash string)
| 230 | } |
| 231 | |
| 232 | func (this *BlocksFile) ExistFile(fileHash string) bool { |
| 233 | err := CheckHashErr(fileHash) |
| 234 | if err != nil { |
| 235 | return false |
| 236 | } |
| 237 | |
| 238 | return this.mFile.ExistFile(fileHash) |
| 239 | } |
| 240 | |
| 241 | func (this *BlocksFile) RemoveFile(fileHash string) error { |
| 242 | err := CheckHashErr(fileHash) |
nothing calls this directly
no test coverage detected