Silent compiler errors when continues compiling

This commit is contained in:
obscuren 2014-07-04 13:42:43 +02:00
parent ca395306e3
commit de183e80db
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ func (self *DebuggerWindow) SetAsm(data []byte) {
func (self *DebuggerWindow) Compile(code string) {
var err error
script := ethutil.StringToByteFunc(code, func(s string) (ret []byte) {
ret, err = ethutil.Compile(s)
ret, err = ethutil.Compile(s, true)
return
})
@ -95,7 +95,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)
ret, err = ethutil.Compile(s, false)
return
})