Fixed GT and LT

This commit is contained in:
obscuren
2014-06-18 00:25:58 +02:00
parent ca79360fd7
commit 8a885c2606
3 changed files with 26 additions and 13 deletions

View File

@ -28,7 +28,7 @@ func Disassemble(script []byte) (asm []string) {
if len(data) == 0 {
data = []byte{0}
}
asm = append(asm, fmt.Sprintf("%#x", data))
asm = append(asm, fmt.Sprintf("0x%x", data))
pc.Add(pc, big.NewInt(a-1))
}