Fixed typo

This commit is contained in:
Ryan O'Hara-Reid
2017-04-12 15:34:20 +10:00
parent 6daba21982
commit c6b7e35dd8

View File

@@ -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{}