mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2026-08-18 15:03:28 +08:00
remove peer.IDFromString
This commit is contained in:
@@ -113,15 +113,6 @@ func (id ID) Validate() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// IDFromString casts a string to the ID type, and validates
|
||||
// the value to make sure it is a multihash.
|
||||
func IDFromString(s string) (ID, error) {
|
||||
if _, err := mh.Cast([]byte(s)); err != nil {
|
||||
return ID(""), err
|
||||
}
|
||||
return ID(s), nil
|
||||
}
|
||||
|
||||
// IDFromBytes casts a byte slice to the ID type, and validates
|
||||
// the value to make sure it is a multihash.
|
||||
func IDFromBytes(b []byte) (ID, error) {
|
||||
|
||||
Reference in New Issue
Block a user