go-ethereum/p2p/discover/portal_storage.go
grapebaba bf12305507 feat:handle find content message
Signed-off-by: grapebaba <281165273@qq.com>
2023-10-26 13:26:02 +08:00

9 lines
188 B
Go

package discover
type Storage interface {
ContentId(contentKey []byte) []byte
Get(contentKey []byte, contentId []byte) ([]byte, error)
Put(contentKey []byte, content []byte) error
}