From 286436de76a0cdf2bab24eb9d2c0f924c45ca096 Mon Sep 17 00:00:00 2001 From: Vadim Zhuk Date: Tue, 26 Mar 2019 07:42:01 +0200 Subject: [PATCH] Okgroup: fix empy notional (#261) OKGroup: GetSpotOrderResponse fix empty notional --- exchanges/okgroup/okgroup_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchanges/okgroup/okgroup_types.go b/exchanges/okgroup/okgroup_types.go index 2dd43212..53ca27bf 100644 --- a/exchanges/okgroup/okgroup_types.go +++ b/exchanges/okgroup/okgroup_types.go @@ -216,7 +216,7 @@ type GetSpotOrderResponse struct { FilledNotional float64 `json:"filled_notional,string"` FilledSize float64 `json:"filled_size,string"` InstrumentID string `json:"instrument_id"` - Notional float64 `json:"notional,string"` + Notional string `json:"notional"` OrderID string `json:"order_id"` Price float64 `json:"price,string"` Side string `json:"side"`