Skip to content

Commit

Permalink
txscript: Remove unused unparseScript func.
Browse files Browse the repository at this point in the history
Also remove tests associated with unparsing opcodes accordingly.
  • Loading branch information
davecgh authored and cfromknecht committed Feb 5, 2021
1 parent 11f1857 commit d16fd9f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3,665 deletions.
14 changes: 0 additions & 14 deletions txscript/script.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,20 +202,6 @@ func checkScriptTemplateParseable(script []byte, opcodes *[256]opcode) (*byte, e
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
// script fails to parse, the returned string will contain the disassembled
// script up to the point the failure occurred along with the string '[error]'
Expand Down
Loading

0 comments on commit d16fd9f

Please sign in to comment.