mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
12 lines
180 B
Go
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
|
|
}
|