namesys: drop prefix args

License: MIT
Signed-off-by: Łukasz Magiera <magik6k@gmail.com>


This commit was moved from ipfs/interface-go-ipfs-core@1308d71ad0

This commit was moved from ipfs/boxo@183798effb
This commit is contained in:
Łukasz Magiera 2018-10-16 16:35:31 +02:00
parent 45b9ac582d
commit cfb18be463

View File

@ -40,7 +40,7 @@ type NameAPI interface {
// Search is a version of Resolve which outputs paths as they are discovered,
// reducing the time to first entry
//
// Note that by default only the last path returned before the channel closes
// can be considered 'safe'.
// Note: by default, all paths read from the channel are considered unsafe,
// except the latest (last path in channel read buffer).
Search(ctx context.Context, name string, opts ...options.NameResolveOption) (<-chan IpnsResult, error)
}