aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-19 01:23:37 +0800
committerobscuren <geffobscura@gmail.com>2015-03-19 01:23:37 +0800
commitf9a6038f5b82cad6956c9cbb7f1220d97570632b (patch)
tree78fb61bed1924b60c3c4d59e5a5a471f55f91de7 /common
parent4d0ae8b0cb32e9de63092bc36022ea4af76cad8b (diff)
parentbaca0c2251a2587c136999a91449d9b6f7a6c60f (diff)
downloaddexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar
dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.gz
dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.bz2
dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.lz
dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.xz
dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.zst
dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.zip
merge
Diffstat (limited to 'common')
-rw-r--r--common/common.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/common.go b/common/common.go
index 1371d18d4..155bb5c2a 100644
--- a/common/common.go
+++ b/common/common.go
@@ -65,6 +65,15 @@ func DefaultDataDir() string {
}
}
+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" {