From 35fb862fa975ffa95ef05609ab0114319e98e648 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Mon, 1 Jan 2018 21:36:11 -0200 Subject: [PATCH] Fix exchange order --- catalyst/exchange/exchange_blotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/exchange/exchange_blotter.py b/catalyst/exchange/exchange_blotter.py index 06494788..530161e2 100644 --- a/catalyst/exchange/exchange_blotter.py +++ b/catalyst/exchange/exchange_blotter.py @@ -171,7 +171,7 @@ class ExchangeBlotter(Blotter): else: order = retry( - action=self.get_exchange_transactions, + action=self.exchange_order, attempts=self.attempts['order_attempts'], sleeptime=self.attempts['retry_sleeptime'], retry_exceptions=(ExchangeRequestError,),