txscript: Remove unused unparseScript func.

Also remove tests associated with unparsing opcodes accordingly.
This commit is contained in:
Dave Collins 2019-03-13 01:13:04 -05:00 committed by Roy Lee
parent 82e02951dc
commit 849873675f
2 changed files with 0 additions and 3665 deletions

View file

@ -202,20 +202,6 @@ func checkScriptTemplateParseable(script []byte, opcodes *[256]opcode) (*byte, e
return &firstOpcode, nil return &firstOpcode, nil
} }
// unparseScript reversed the action of parseScript and returns the
// parsedOpcodes as a list of bytes
func unparseScript(pops []parsedOpcode) ([]byte, error) {
script := make([]byte, 0, len(pops))
for _, pop := range pops {
b, err := pop.bytes()
if err != nil {
return nil, err
}
script = append(script, b...)
}
return script, nil
}
// DisasmString formats a disassembled script for one line printing. When the // DisasmString formats a disassembled script for one line printing. When the
// script fails to parse, the returned string will contain the disassembled // script fails to parse, the returned string will contain the disassembled
// script up to the point the failure occurred along with the string '[error]' // script up to the point the failure occurred along with the string '[error]'

File diff suppressed because it is too large Load diff