From 55049043861ba970603f800fee2c4046f9c312ec Mon Sep 17 00:00:00 2001 From: infinq <59309143+infinq@users.noreply.github.com> Date: Sun, 10 Jan 2021 07:42:19 +0100 Subject: [PATCH] Fix unmarshal error on time --- bitvavo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitvavo.go b/bitvavo.go index 6a11a82..247bdd7 100644 --- a/bitvavo.go +++ b/bitvavo.go @@ -27,7 +27,7 @@ type TimeResponse struct { } type Time struct { - Time int64 `json:"time,string"` + Time int64 `json:"time"` } type MarketsResponse struct {