Revert "cmd/evm: change error msg output to stderr (#17118)"

This reverts commit fb9f7261ec.
This commit is contained in:
Péter Szilágyi
2018-08-01 19:09:08 +03:00
parent 46d4721519
commit 83e2761c3a
5 changed files with 22 additions and 23 deletions

View File

@ -45,6 +45,6 @@ func disasmCmd(ctx *cli.Context) error {
}
code := strings.TrimSpace(string(in[:]))
fmt.Fprintf(ctx.App.Writer, "%v\n", code)
fmt.Printf("%v\n", code)
return asm.PrintDisassembled(code)
}