Skip to content

Commit

Permalink
Disabled instruction selection
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed May 29, 2014
1 parent f802e17 commit 0b4c42d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethereal/assets/debugger/debugger.qml
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ ApplicationWindow {
}

function setInstruction(num) {
asmTableView.selection.clear()
asmTableView.selection.select(num)
//asmTableView.selection.clear()
//asmTableView.selection.select(num)
}

function setMem(mem) {
Expand Down
1 change: 1 addition & 0 deletions ethereal/ui/debugger.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ func (self *DebuggerWindow) Debug(valueStr, gasStr, gasPriceStr, scriptStr, data
var err error
script := ethutil.StringToByteFunc(scriptStr, func(s string) (ret []byte) {
ret, err = ethutil.Compile(s)
fmt.Printf("%x\n", ret)
return
})

Expand Down

0 comments on commit 0b4c42d

Please sign in to comment.