Add REST and websocket support for BTSE (#250)

* Add REST and websocket support for BTSE exchange

TO-DO: Finish wrappers and expand test coverage

* Fill out wrapper funcs and expand test coverage
This commit is contained in:
Adrian Gallagher
2019-03-08 16:33:10 +11:00
committed by GitHub
parent 6d6b0ae067
commit 3ac8b7746f
44 changed files with 1543 additions and 52 deletions

View File

@@ -237,7 +237,7 @@ func (i *ItBit) CancelAllOrders(orderCancellation exchange.OrderCancellation) (e
}
// GetOrderInfo returns information on a current open order
func (i *ItBit) GetOrderInfo(orderID int64) (exchange.OrderDetail, error) {
func (i *ItBit) GetOrderInfo(orderID string) (exchange.OrderDetail, error) {
var orderDetail exchange.OrderDetail
return orderDetail, common.ErrNotYetImplemented
}