binance: fix futures limit maker order type

This commit is contained in:
austin362667 2022-03-28 21:10:24 +08:00
parent 0511a0fde3
commit 3f3fb1fe35

View File

@ -273,7 +273,7 @@ func toLocalFuturesOrderType(orderType types.OrderType) (futures.OrderType, erro
// case types.OrderTypeLimitMaker:
// return futures.OrderTypeLimitMaker, nil //TODO
case types.OrderTypeLimit:
case types.OrderTypeLimit, types.OrderTypeLimitMaker:
return futures.OrderTypeLimit, nil
// case types.OrderTypeStopLimit: