diff --git a/exchanges/bitfinex/bitfinex.go b/exchanges/bitfinex/bitfinex.go index 1f770082..5a0916cb 100644 --- a/exchanges/bitfinex/bitfinex.go +++ b/exchanges/bitfinex/bitfinex.go @@ -246,7 +246,7 @@ func (b *Bitfinex) CancelOrder(OrderID int64) (BitfinexOrder, error) { return response, nil } -func (b *Bitfinex) CancelMultiplateOrders(OrderIDs []int64) (string, error) { +func (b *Bitfinex) CancelMultipleOrders(OrderIDs []int64) (string, error) { request := make(map[string]interface{}) request["order_ids"] = OrderIDs response := BitfinexGenericResponse{}