1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-11 15:15:58 +08:00

move signing options into a validation checker struct

This commit is contained in:
Jeromy
2015-02-25 14:56:26 -08:00
parent 049b5ad945
commit 7fb63d7e43
13 changed files with 65 additions and 21 deletions

View File

@ -21,7 +21,7 @@ type IpfsRouting interface {
// Basic Put/Get
// PutValue adds value corresponding to given Key.
PutValue(context.Context, u.Key, []byte, bool) error
PutValue(context.Context, u.Key, []byte) error
// GetValue searches for the value corresponding to given Key.
GetValue(context.Context, u.Key) ([]byte, error)