diff --git a/config.yaml.example b/config.yaml.example index 8cb6894..cf2dea9 100644 --- a/config.yaml.example +++ b/config.yaml.example @@ -1,4 +1,4 @@ -# Attention: This is a yaml file. If you don't use the exact amount of spaces +# Trigger warning: This is a yaml file. If you don't use the exact amount of spaces # precisely where they belong, ghost will haunt you until the end of your life. # ----- Node credentials ----- diff --git a/helpers.go b/helpers.go index 0e9298e..1b07749 100644 --- a/helpers.go +++ b/helpers.go @@ -46,7 +46,6 @@ func intToHex(i int64) string { func parse_channelID(e uint64) string { byte_e := big.NewInt(int64(e)).Bytes() hexstr := hex.EncodeToString(byte_e) - fmt.Println(hexstr) int_block3, _ := strconv.ParseInt(hexstr[:6], 16, 64) int_block2, _ := strconv.ParseInt(hexstr[6:12], 16, 64) int_block1, _ := strconv.ParseInt(hexstr[12:], 16, 64)