Skip to content

Commit

Permalink
claimtrie: allows '*' in claim name
Browse files Browse the repository at this point in the history
  • Loading branch information
roylee17 committed Nov 23, 2022
1 parent 4c39a98 commit a0ff51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txscript/claimscript.go
Expand Up @@ -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)
Expand Down

0 comments on commit a0ff51b

Please sign in to comment.