Skip to content
This repository was archived by the owner on Oct 5, 2021. It is now read-only.

Commit c8c1cc8

Browse files
committed
fix gdax exchange class
1 parent 68accdd commit c8c1cc8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

algocoin/lib/exchanges/gdax.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,9 @@ def sell(self, req: TradeRequest) -> TradeResponse:
168168
remaining=float(order.get('remaining_amount', 0.0)),
169169
)
170170
return resp
171+
172+
def cancel(self, resp: TradeResponse):
173+
raise NotImplementedError()
174+
175+
def cancelAll(self, resp: TradeResponse):
176+
raise NotImplementedError()

0 commit comments

Comments
 (0)