swarm/storage: simplify ChunkValidator interface (#18285)

This commit is contained in:
Javier Peletier
2018-12-12 16:22:17 +01:00
committed by Anton Evangelatov
parent ebbf3dfafb
commit 4e6f53ac33
7 changed files with 20 additions and 18 deletions

View File

@ -118,7 +118,7 @@ func TestValidator(t *testing.T) {
type boolTestValidator bool
func (self boolTestValidator) Validate(addr Address, data []byte) bool {
func (self boolTestValidator) Validate(chunk Chunk) bool {
return bool(self)
}