diff --git a/util/btcctl/btcctl.go b/util/btcctl/btcctl.go index c59f3fcf..8e112c34 100644 --- a/util/btcctl/btcctl.go +++ b/util/btcctl/btcctl.go @@ -110,7 +110,7 @@ func displayGeneric(reply interface{}) error { // is returned if a float64 is not passed. func displayFloat64(reply interface{}) error { if val, ok := reply.(float64); ok { - fmt.Println(val) + fmt.Printf("%f", val) return nil }