aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain/types.go')
-rw-r--r--ethchain/types.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/types.go b/ethchain/types.go
index d89fad147..ee70a8d28 100644
--- a/ethchain/types.go
+++ b/ethchain/types.go
@@ -226,7 +226,7 @@ var opCodeToString = map[OpCode]string{
func (o OpCode) String() string {
str := opCodeToString[o]
if len(str) == 0 {
- return fmt.Sprintf("Missing opcode %#x", int(o))
+ return fmt.Sprintf("Missing opcode 0x%x", int(o))
}
return str