Disabled instruction selection

This commit is contained in:
obscuren 2014-05-29 02:05:06 +02:00
parent f802e17626
commit 0b4c42d756
2 changed files with 3 additions and 2 deletions

View File

@ -224,8 +224,8 @@ ApplicationWindow {
} }
function setInstruction(num) { function setInstruction(num) {
asmTableView.selection.clear() //asmTableView.selection.clear()
asmTableView.selection.select(num) //asmTableView.selection.select(num)
} }
function setMem(mem) { function setMem(mem) {

View File

@ -71,6 +71,7 @@ func (self *DebuggerWindow) Debug(valueStr, gasStr, gasPriceStr, scriptStr, data
var err error var err error
script := ethutil.StringToByteFunc(scriptStr, func(s string) (ret []byte) { script := ethutil.StringToByteFunc(scriptStr, func(s string) (ret []byte) {
ret, err = ethutil.Compile(s) ret, err = ethutil.Compile(s)
fmt.Printf("%x\n", ret)
return return
}) })