Compare commits

..

No commits in common. "master" and "v0.22.118" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ builds:
ldflags:
- -s -w
- -buildid=
- -X github.com/lbryfoundation/lbcd/version.appTag={{ .Tag }}
- -X github.com/lbryio/lbcd/version.appTag={{ .Tag }}
targets:
- linux_amd64
- linux_arm64
@ -35,7 +35,7 @@ builds:
ldflags:
- -s -w
- -buildid=
- -X github.com/lbryfoundation/lbcd/version.appTag={{ .Tag }}
- -X github.com/lbryio/lbcd/version.appTag={{ .Tag }}
env:
- CGO_ENABLED=0
targets:
@ -60,8 +60,8 @@ dockers:
- use: buildx
dockerfile: Dockerfile.goreleaser
image_templates:
- "docker.io/lbryfoundation/lbcd:{{ .Tag }}"
- "docker.io/lbryfoundation/lbcd:latest"
- "docker.io/lbry/lbcd:{{ .Tag }}"
- "docker.io/lbry/lbcd:latest"
release:
draft: true

View file

@ -206,7 +206,7 @@ func StripClaimScriptPrefix(script []byte) []byte {
return script[cs.Size:]
}
const illegalChars = "=&#:$%?/;\\\b\n\t\r\x00"
const illegalChars = "=&#:*$%?/;\\\b\n\t\r\x00"
func AllClaimsAreSane(script []byte, enforceSoftFork bool) error {
cs, err := ExtractClaimScript(script)