You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
298 B
14 lines
298 B
package testfixtures
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func (l *Loader) tryHexStringToBytes(s string) ([]byte, error) {
|
|
if !strings.HasPrefix(s, "0x") {
|
|
return nil, fmt.Errorf("not a hexadecimal string, must be prefix 0x")
|
|
}
|
|
return hex.DecodeString(strings.TrimPrefix(s, "0x"))
|
|
}
|
|
|