From a959b6cce664101b8a781147e2c9c25bc0162054 Mon Sep 17 00:00:00 2001 From: khcchiu <37725541+khcchiu@users.noreply.github.com> Date: Wed, 29 Sep 2021 12:16:40 +0800 Subject: [PATCH] CoinbasePro: Remove settled from order history status (#788) --- exchanges/coinbasepro/coinbasepro_wrapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchanges/coinbasepro/coinbasepro_wrapper.go b/exchanges/coinbasepro/coinbasepro_wrapper.go index 6a0a591b..950ed195 100644 --- a/exchanges/coinbasepro/coinbasepro_wrapper.go +++ b/exchanges/coinbasepro/coinbasepro_wrapper.go @@ -798,7 +798,7 @@ func (c *CoinbasePro) GetOrderHistory(ctx context.Context, req *order.GetOrdersR return nil, err } resp, err := c.GetOrders(ctx, - []string{"done", "settled"}, + []string{"done"}, fpair.String()) if err != nil { return nil, err