remove peer.IDFromString (#274)

This commit is contained in:
Marten Seemann 2022-07-09 10:03:00 +00:00 committed by GitHub
parent 2dc986f623
commit 247031f933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,15 +114,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) {