mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-11 05:39:03 +00:00
Disabled instruction selection
This commit is contained in:
parent
f802e17626
commit
0b4c42d756
2 changed files with 3 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue