txscript: Remove unused removeOpcode

This commit is contained in:
Conner Fromknecht 2019-04-19 20:11:34 -07:00 committed by Roy Lee
parent 90b8c2cb51
commit 1e3b85cd60

View file

@ -267,20 +267,6 @@ func DisasmString(script []byte) (string, error) {
return disbuf.String(), tokenizer.Err()
}
// removeOpcode will remove any opcode matching ``opcode'' from the opcode
// stream in pkscript
//
// DEPRECATED. Use removeOpcodeRaw instead.
func removeOpcode(pkscript []parsedOpcode, opcode byte) []parsedOpcode {
retScript := make([]parsedOpcode, 0, len(pkscript))
for _, pop := range pkscript {
if pop.opcode.value != opcode {
retScript = append(retScript, pop)
}
}
return retScript
}
// removeOpcodeRaw will return the script after removing any opcodes that match
// `opcode`. If the opcode does not appear in script, the original script will
// be returned unmodified. Otherwise, a new script will be allocated to contain