Marketmaker no longer masks errors.

This commit is contained in:
Geoff Taylor 2021-08-18 14:49:54 +01:00
parent 2bf4d07592
commit a51b38049b
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class MarketMaker:
crank = self.market_instruction_builder.build_crank_instructions([]) crank = self.market_instruction_builder.build_crank_instructions([])
settle = self.market_instruction_builder.build_settle_instructions() settle = self.market_instruction_builder.build_settle_instructions()
(payer + cancellations + place_orders + crank + settle).execute(context, on_exception_continue=True) (payer + cancellations + place_orders + crank + settle).execute(context)
self.pulse_complete.on_next(datetime.now()) self.pulse_complete.on_next(datetime.now())
except Exception as exception: except Exception as exception: