aboutsummaryrefslogtreecommitdiffstats
path: root/common/bytes.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-03-23 04:46:46 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-03-23 04:46:46 +0800
commit8affdf96e23f092b7fe24d168b024b10eab35e05 (patch)
tree3d29fe62226a54a8f22d194df03224c7625e1312 /common/bytes.go
parent3133372a6a81c91528afbde58e22b3f9df257d03 (diff)
parentbf73f02fe040086ac7c9786a15fadc65840a8536 (diff)
downloaddexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar
dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar.gz
dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar.bz2
dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar.lz
dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar.xz
dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar.zst
dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.zip
Merge pull request #547 from tgerring/commoncleanup
common/common.go cleanup
Diffstat (limited to 'common/bytes.go')
-rw-r--r--common/bytes.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/common/bytes.go b/common/bytes.go
index 5e553d23c..2d885ac74 100644
--- a/common/bytes.go
+++ b/common/bytes.go
@@ -9,6 +9,28 @@ import (
"strings"
)
+func ToHex(b []byte) string {
+ hex := Bytes2Hex(b)
+ // Prefer output of "0x0" instead of "0x"
+ if len(hex) == 0 {
+ hex = "0"
+ }
+ return "0x" + hex
+}
+
+func FromHex(s string) []byte {
+ if len(s) > 1 {
+ if s[0:2] == "0x" {
+ s = s[2:]
+ }
+ if len(s)%2 == 1 {
+ s = "0" + s
+ }
+ return Hex2Bytes(s)
+ }
+ return nil
+}
+
type Bytes []byte
func (self Bytes) String() string {