aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/types.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-18 06:25:58 +0800
committerobscuren <geffobscura@gmail.com>2014-06-18 06:25:58 +0800
commit8a885c2606fbf675770cf40b31f9ceb5ef8acae9 (patch)
tree35765088a8ed14c9272837a4963dfdfd77ac858a /ethchain/types.go
parentca79360fd7621a96382c0304e74e0d1f39b739fc (diff)
downloadgo-tangerine-8a885c2606fbf675770cf40b31f9ceb5ef8acae9.tar
go-tangerine-8a885c2606fbf675770cf40b31f9ceb5ef8acae9.tar.gz
go-tangerine-8a885c2606fbf675770cf40b31f9ceb5ef8acae9.tar.bz2
go-tangerine-8a885c2606fbf675770cf40b31f9ceb5ef8acae9.tar.lz
go-tangerine-8a885c2606fbf675770cf40b31f9ceb5ef8acae9.tar.xz
go-tangerine-8a885c2606fbf675770cf40b31f9ceb5ef8acae9.tar.zst
go-tangerine-8a885c2606fbf675770cf40b31f9ceb5ef8acae9.zip
Fixed GT and LT
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