go-ethereum/swarm/state.go
Lewis Marshall 41d3011ebe swarm/pss: Improve network tests
Signed-off-by: Lewis Marshall <lewis@lmars.net>
2017-12-14 16:19:59 +00:00

12 lines
180 B
Go

package swarm
type Voidstore struct {
}
func (self Voidstore) Load(string) ([]byte, error) {
return nil, nil
}
func (self Voidstore) Save(string, []byte) error {
return nil
}